jquery 为动态添加的元素绑定事件

live函数已经被废弃了!!

如果直接写click函数的话,只能把事件绑定在已经存在的元素上,不能绑定在动态添加的元素上

尝试过重新调用,结果是重复触发。。。

可以用delegate来实现

javascript.delegate( selector, eventType, handler )

例如:

javascript$('someUlSelector').delegate('someLiSelector', 'click', function() {
    //codes...
    //$(this) for the current jquery instance of the element
});
    原文作者:体力劳动者
    原文地址: https://segmentfault.com/a/1190000002656549
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞