如何使用JavaScript重新加载页面?
我需要一个方法,工作在所有浏览器。
如何使用JavaScript重新加载页面?
我需要一个方法,工作在所有浏览器。
当前回答
JavaScript 1.2及更新版本
window.location.reload();
// If we needed to force the document to be fetched from the
// web server again (such as where the document contents
// change dynamically but cache control headers are not
// configured properly), Firefox supports a non-standard
// parameter that can be set to true to bypass the cache:
//window.location.reload(true);
JavaScript 1.1
window.location.replace(window.location.pathname + window.location.search + window.location.hash);
// does not create a history entry
JavaScript 1.0
window.location.href = window.location.pathname + window.location.search + window.location.hash;
// creates a history entry
其他回答
如果你把
window.location.reload(true);
在页面开始时,如果没有其他条件限定代码运行的原因,页面将加载,然后继续重新加载,直到您关闭浏览器。
JavaScript 1.2及更新版本
window.location.reload();
// If we needed to force the document to be fetched from the
// web server again (such as where the document contents
// change dynamically but cache control headers are not
// configured properly), Firefox supports a non-standard
// parameter that can be set to true to bypass the cache:
//window.location.reload(true);
JavaScript 1.1
window.location.replace(window.location.pathname + window.location.search + window.location.hash);
// does not create a history entry
JavaScript 1.0
window.location.href = window.location.pathname + window.location.search + window.location.hash;
// creates a history entry
最短(更多)
history.go()
Try:
window.location.reload(true);
参数设置为'true'从服务器重新加载一个新的副本。省略它将从缓存中提供页面。
更多信息可以在MSDN和Mozilla文档中找到。
我正在寻找一些关于使用POST请求重新加载页面的信息,例如在提交method=" POST "表单之后。
要重新加载保存POST数据的页面,请使用:
window.location.reload();
要重新加载丢弃POST数据的页面(执行GET请求),使用:
window.location.href = window.location.href;
希望这能帮助其他人寻找同样的信息。