使用 javascript/jquery 重新加载并删除 php post 数据
reload with javascript/jquery and remove php post data
当我使用 javascripts location.reload() 重新加载页面时,所有 $_POST 数据都与以前相同。是否可以在不保留 POST 数据的情况下重新加载页面?
感谢
直接用JS自己替换位置:
window.location.href = window.location.href;
这不应触发浏览器再次 post 数据。
当我使用 javascripts location.reload() 重新加载页面时,所有 $_POST 数据都与以前相同。是否可以在不保留 POST 数据的情况下重新加载页面?
感谢
直接用JS自己替换位置:
window.location.href = window.location.href;
这不应触发浏览器再次 post 数据。