抱歉,我的英语不好ı使用像这样的ajax附加新数据
<span class="commentbuton" id="143">Comment..</span>
和javascript是
$(function(){
$(".commentbuton").click(function() { ...
但是它没有处理新的附加数据请帮助谢谢。
答案 0 :(得分:0)
在将元素插入页面后,您需要绑定单击侦听器。我的猜测是你在“.commentbutton”存在之前绑定点击处理程序。
$('body').html('<div class="commentbutton"></div>')
//bind after commentbutton inserted
$(".commentbuton").click(function() { ... });
这有帮助吗?