当前页面的JavaScript硬刷新

当前页面的JavaScript硬刷新

本文介绍了当前页面的JavaScript硬刷新的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

如何通过JavaScript强制Web浏览器对页面进行硬刷新?

硬刷新意味着获取页面的全新副本并刷新所有外部资源(图像,JavaScript,CSS)等等。

How can I force the web browser to do a hard refresh of the page via JavaScript?
Hard refresh means getting a fresh copy of the page AND refresh all the external resources (images, JavaScript, CSS, etc.).

推荐答案

尝试使用:

location.reload(true);

当此方法收到 true 值时参数,它将导致页面始终从服务器重新加载。如果它为false或未指定,浏览器可能从其缓存中重新加载页面。

When this method receives a true value as argument, it will cause the page to always be reloaded from the server. If it is false or not specified, the browser may reload the page from its cache.

更多信息:



  • The location object

这篇关于当前页面的JavaScript硬刷新的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

07-31 15:16