Home > Article > Web Front-end > How to Force Refresh a Web Page in JavaScript and Bypass Cache?
Forcing the web browser to hard refresh a page via JavaScript ensures obtaining a fresh copy of the page and updating all its external resources.
To achieve this, JavaScript provides a method called location.reload(true). When passed a true value, this method instructs the browser to bypass its cache and reload the current document directly from the server.
<code class="JavaScript">location.reload(true);</code>
It's important to note that this solution may not work consistently across all browsers. According to the MDN documentation, Firefox supports a non-standard forceGet parameter in location.reload(), which forcefully reloads the document. However, other browsers ignore any parameters passed to location.reload() and have no effect.
For more information, you can refer to the MDN page on the location object.
The above is the detailed content of How to Force Refresh a Web Page in JavaScript and Bypass Cache?. For more information, please follow other related articles on the PHP Chinese website!