Chrome 41:按下后退按钮时强制重新加载
Chrome 41: Force Reload when pressing the back button
我正在尝试类似的操作:Force reload/refresh when pressing the back button
不幸的是,建议的代码在 Chrome41:
中不起作用
window.onpageshow = function(evt) {
// If persisted then it is in the page cache, force a reload of the page.
if (evt.persisted) {
document.body.style.display = "none";
location.reload();
}};
这个问题有更新的解决方案吗?
非常感谢!
请check this question使用localStorage/sessionStorage解决问题。
我正在尝试类似的操作:Force reload/refresh when pressing the back button
不幸的是,建议的代码在 Chrome41:
中不起作用window.onpageshow = function(evt) {
// If persisted then it is in the page cache, force a reload of the page.
if (evt.persisted) {
document.body.style.display = "none";
location.reload();
}};
这个问题有更新的解决方案吗?
非常感谢!
请check this question使用localStorage/sessionStorage解决问题。