标签:
bind(type,[data],fn) 为每个匹配元素的特定事件绑定事件处理函数
$("a").bind("click",function(){alert("ok");});
与$("a").click(function(){...});区别 用法一样,但bind可以绑定多个事件,还能解绑
$(selector).bind({event:function, event:function, ...});
live(type,[data],fn) 给所有匹配的元素附加一个事件处理函数,即使这个元素是以后再添加进来的
通过 live() 方法附加的事件处理程序适用于匹配选择器的当前及未来的元素(比如由脚本创建的新元素)。
在1.4.0之前(不包含1.4.0)无法使用多个绑定的,单个示例为:
$("a").live("click",function(){alert("ok");});
在1.4.0-1.4.2开始支持了,实例如下: $(‘.hoverme‘).live(‘mouseover mouseout‘, function(event) { if (event.type == ‘mouseover‘) { // do something on mouseover } else { // do something on mouseout } });
在1.4.3之后的版本又开始支持另外一种更新的方法:
$(selector).live({event:function, event:function, ...})
delegate(selector,[type],[data],fn) 指定的元素(属于被选元素的子元素)添加一个或多个事件处理程序,并规定当这些事件发生时运行的函数
使用 delegate() 方法的事件处理程序适用于当前或未来的元素(比如由脚本创建的新元素)。
$("#container").delegate("a","click",function(){alert("ok");})
on(events,[selector],[data],fn) 在选择元素上绑定一个或多个事件的事件处理函数
$(selector).on({event:function, event:function, ...})
差别:
.bind()是直接绑定在元素上
.live()则是通过冒泡的方式来绑定到元素上的。更适合列表类型的,绑定到document DOM节点上。和.bind()的优势是支持动态数据。
.delegate()则是更精确的小范围使用事件代理,性能优于.live()
.on()则是最新的1.9版本整合了之前的三种方式的新事件绑定机制
jQuery中.bind() .live() .delegate() .on()的区别
标签:
原文地址:http://www.cnblogs.com/zhaojinhui/p/5394309.html