如何在另一个jquery操作之后刷新元素(div,类什么)?
我有这个动作从数据库中删除一条记录,我需要刷新div,这也是从数据库中获取一些其他数据…
那么这里的代码:
$(function() {
$(".delete").click(function() {
var commentContainer = $(this).parent();
var id = $(this).attr("id");
var string = 'id='+ id ;
$.ajax({
type: "POST",url: "delete.PHP",data: string,cache: false,success: function(){
commentContainer.slideUp('slow',function() {$(this).remove();});
}
});
return false;
});
});
谢谢大家的帮助! 原文链接:https://www.f2er.com/jquery/428759.html