jQuery教程 .bind() .live() .delegate() .on()区别详解

Posted 职坐标在线

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了jQuery教程 .bind() .live() .delegate() .on()区别详解相关的知识,希望对你有一定的参考价值。

我们先看看html代码!!!
<a href="#" onclick="addBtn()">addBtn</a>

<div id="mDiv">

    <button class="cBtn" onclick="alert(11111)">button1</button>

    <button class="cBtn">button2</button>

    <button class="cBtn">button3</button>

</div>
再来看看jQuery的代码!!!
<script type="text/javascript">
 function addBtn(){
            $('#mDiv').append(' <button class="cBtn">button5</button>')
 }
jQuery(function($){
//使用on代替live和delegate(live由于性能原因已经被废弃,被delegate代替),新添加到mDiv的button依然会有绑定的事件
$('#mDiv').on('click','.cBtn',function(index, eleDom){
alert($(this).html())
 });
//使用on代替bind
$('.cBtn').on('click',function(){
alert($(this).html())
 })
 //注意:
/*
1、无论使用bind、on、delegate、click(function())都是重复绑定,即绑定的同类型事件被放到一个事件队列中,依次执行,后绑定的事件不会替换之前绑定的,对于on使用off,delegate用undelegate,bind及click使用unbind来解除绑定,例如unbind(type)传递为事件类型,如果不传type则解出所有事件绑定;需要注意的是元素本身自带的事件无法unbind(如button1)
2、要绑定自定义事件,如'open',以上函数都可以使用,但激活需要使用trigger
*/
}
</script>

bind(type,[data],fn) 为每个匹配元素的特定事件绑定事件处理函数
$("a").bind("click",function(){alert("ok");});
live(type,[data],fn) 给所有匹配的元素附加一个事件处理函数,即使这个元素是以后再添加进来的
$("a").live("click",function(){alert("ok");});
delegate(selector,[type],[data],fn) 指定的元素(属于被选元素的子元素)添加一个或多个事件处理程序,并规定当这些事件发生时运行的函数
$("#container").delegate("a","click",function(){alert("ok");})
on(events,[selector],[data],fn) 在选择元素上绑定一个或多个事件的事件处理函数
差别:
.bind()是直接绑定在元素上
.live()则是通过冒泡的方式来绑定到元素上的。更适合列表类型的,绑定到document DOM节点上。和.bind()的优势是支持动态数据。
.delegate()则是更精确的小范围使用事件代理,性能优于.live()
.on()则是最新的1.9版本整合了之前的三种方式的新事件绑定机制

   

本文由职坐标整理并发布,希望对同学们有所帮助。了解更多详情请关注职坐标WEB前端jQuery频道!



以上是关于jQuery教程 .bind() .live() .delegate() .on()区别详解的主要内容,如果未能解决你的问题,请参考以下文章

jquery bind live delegate on

jQuery事件绑定on()bind()live()与delegate() 方法详解

jquery中的bind()live()的区别与使用(事件处理)

在 jQuery 1.7 之后不推荐使用 live() 和 bind() 的原因是啥

Jquery中bind和live的区别

jQuery中.bind() .live() .delegate() .on()的区别