Javascript附加数据不起作用

时间:2015-08-28 21:17:07

标签: javascript jquery ajax

抱歉,我的英语不好ı使用像这样的ajax附加新数据

<span class="commentbuton" id="143">Comment..</span>

和javascript是

$(function(){
    $(".commentbuton").click(function() { ...

但是它没有处理新的附加数据请帮助谢谢。

1 个答案:

答案 0 :(得分:0)

在将元素插入页面后,您需要绑定单击侦听器。我的猜测是你在“.commentbutton”存在之前绑定点击处理程序。

$('body').html('<div class="commentbutton"></div>')
//bind after commentbutton inserted
$(".commentbuton").click(function() { ... });

这有帮助吗?