使用1.7.1添加新数据后jquery无法正常工作?

时间:2012-09-19 16:15:58

标签: jquery

我目前正在将我的直播活动转换为使用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 在页面加载后工作但在我动态添加新数据后无法触发。我错过了什么吗?

1 个答案:

答案 0 :(得分:4)

您仍需要使用委派

$(document).on('click', '.commentopen', function() {