我想在点击删除按钮时从我的数据库中删除一些记录。目前我正在使用此代码:
{{1}}
在removeItem_checkOUt.php中,我只是运行删除查询。
它适用于我,但此代码的问题是它重新加载整个页面。我只想在不重新加载页面的情况下这样做。
简单的说法就是上面代码的功能很好但是如果没有重新加载页面我就无法做到。在页面重新加载之前,页面不会消失 任何人都可以帮助我....
答案 0 :(得分:1)
删除" window.location.reload();"你的成功回调。
该行告诉你的ajax调用在成功执行后重新加载窗口。
答案 1 :(得分:1)
function removeItem(id) {
$.ajax({
url:"removeItem_checkOut.php",
type:"GET",
data:"id="+id,
success:function(html) {
$('#div_contains_data').html(html); //put your div id of the content (if it is a table use that table inside a div)
}
});
}
并在你的removeItem_checkOut.php
中再次打印div包含的相同数据部分(此处假设为table.so再次打印php文件中的表格)。