我目前正在将我的直播活动转换为使用jquery 1.7 +。
我只是将直播更改为 ,如下所示:
在:
$('.commentopen').live('click', function() {
var ID = $(this).attr("id");
$("#commentbox"+ID).slideToggle('fast');
return false;
});
后:
$('.commentopen').on('click', function() {
var ID = $(this).attr("id");
$("#commentbox"+ID).slideToggle('fast');
return false;
});
on 在页面加载后工作但在我动态添加新数据后无法触发。我错过了什么吗?
答案 0 :(得分:4)
您仍需要使用委派
$(document).on('click', '.commentopen', function() {