我的 jquery 脚本有问题,在图像点击时调用了一个函数 Openpopup(pic, this),在这个函数内部我需要这个$(obj).find('span.class').remove();
function open_popup(pic,obj){
$(obj).find('.notice').remove(); // this is not working
$.ajax ({
type: "POST",
url: "includes/load_comments.php",
data: "cond=fetchdata&pic="+pic,
success: function(msg){
alert('done');
}
});
}
问题是,当我评论所有 ajax 时, .remove 有效。出了什么问题,无法让它工作..请帮忙!!!