将新的 html 插入 DOM 后,我需要向它添加一些侦听器。
但是新元素不是立即可用的。
我的代码:
$('#loader').clone().removeAttr('id').load("Views/chatBox.html").appendTo('body');
$('#chat')
.focus(function() {
$(this).addClass('jV');
})
.blur(function() {
$('#chat').removeClass('jV');
});
哪个不工作。
使用 live() 仍然无法正常工作:
$('#chat').live('focus',function() {
$('#chat').addClass('jV');
})
.live('blur',function() {
$('#chat').removeClass('jV');
});