我正在使用这段代码删除记录,但删除成功后,记录仍会显示在浏览器上,直到我刷新屏幕。一旦我在警告弹出窗口确认“OK”,假设记录应该消失。有人知道这是什么问题吗?谢谢!
$('。removeoveREC')。bind('click',function(e){ if(确认('这将删除附件。你确定要继续吗?')){ $(“div ## comments”)。haide(); var recID = $(this).attr('data-recid');
$.ajax({
type: "GET",
url: "/SWS/Components/inc_post_running_standards.cfc?method=mark&as=D&id=" + recID,
success: function( response ) {
//$(##RecDetails).html( response );
}
});
}
});