….
$(.cancle-reply).on('click',function(){
alert(1);
});
上面的不行 试试下面的
$(document).on('click','.cancle-reply',function(){
alert(1);
});
….
$(.cancle-reply).on('click',function(){
alert(1);
});
上面的不行 试试下面的
$(document).on('click','.cancle-reply',function(){
alert(1);
});
677

被折叠的 条评论
为什么被折叠?