Chrome 41: Force Reload when pressing the back button [duplicate]
问题 This question already has answers here : how to force page refresh on browser back click? (2 answers) Closed 5 years ago . I'm trying something similar to this: Force reload/refresh when pressing the back button Unfortunately, the suggested code doesn't work in Chrome 41: 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(); }}; Is there a newer solution to