在jquery的1.11版本之前,绑定动态产生的元素使用的方法有 .live和de
$('body').on("click",'div',function(){ alert($(this).attr('id')); });
本文共 161 字,大约阅读时间需要 1 分钟。
在jquery的1.11版本之前,绑定动态产生的元素使用的方法有 .live和de
$('body').on("click",'div',function(){ alert($(this).attr('id')); });
转载于:https://my.oschina.net/u/2333943/blog/538245