jQuery的.live()和.die() 使用介绍

2020-05-16 18:46:32易采站长站整理

alert(“You are now leaving this site”);
return true;
}
$(document).ready( function() {
$(‘a’).live( ‘click’, specialAlert );
$(‘a’).live( ‘click’, someOtherFunction );
});
// then somewhere else, we could unbind only the first binding
$(‘a’).die( ‘click’, specialAlert );

关于 .die()的问题
使用这些函数时,.die()方法会有一个缺点。只可以使用.live()方法中用到的元素选择器,例如,不可以像下面这样写:

$(document).ready( function() {
$(‘a’).live( ‘click’, function() {
alert(“You are now leaving this site”);
return true;
});
});
// it would be nice if we could then choose specific elements
// to unbind, but this will do nothing
$(‘a.no-alert’).die();

.die()事件看起来好像是匹配到了目标选择权并解除了.live()的绑定,但事实上,$(‘a.no-alert’)并不存在绑定,所以jquery找不到任何绑定去去掉,就不会起作用了。
更糟的是下面这个:

$(document).ready( function() {
$(‘a,form’).live( ‘click’, function() {
alert(“You are going to a different page”);
return true;
});
});
// NEITHER of these will work
$(‘a’).die();
$(‘form’).die();
// ONLY this will work
$(‘a,form’).die();


如何修复 .die()

在我下篇文章中,我将会建议一种.die()执行的新方法,它可以提供一个向后兼容的语气的行为。或许我有时间的话会去建议jQuery核心开发团队在下一个release中接受我的建议并进行修改,希望多一点我刚写的这些方法,包括可选的context参数,允许自定义事件附加的节点,而不是根节点。


如果想得到更多的信息和例子,可以查查jQuery .live() and .die().的文档


同时注意下 .delegate() 和.undelegate(),他们可以替代.live()和.die(),它们联系很紧密。