通过 ajax 更新数据库后,我需要重新加载页面。在我的 ajax post 方法中,我有如下内容:
success: function (data) {
....(some code doesn't matter)
document.location.reload();
....(some other code I wish to execute after document is reloaded)
}
但是,之后的代码reload()
将首先执行,然后页面将重新加载。我究竟做错了什么?