js刷新当前页面【经测试有用】
在javascript编程中,多使用location.reload来实现当前页面刷新,js刷新当前页面函数location.reload()的用法,有关js location.reload()函数的例子,有需要的朋友参考下,有不足之处请指正批评。
先看这个例子:
window.location.href=window.location.href;
window.location.reload;
经测试,这两句在某些情况下可以代替location.reload(true);
而不会出现重试对话框达到刷新的效果
在js中实现刷新当前页面的方法有很多种,在js中有一个location.reload()函数,它就可以实现我们想要的功能。
window.location.reload(true) //浏览器重新从服务器请求资源,在http请求头中不会包含缓存标记。
js刷新当前页面最终的代码:
<script type="text/javascript">
window.location.reload();
</script>
除注明外的文章,均为来源:老汤博客,转载请保留本文地址!
原文地址:https://tangjiusheng.cn/js/102.html
原文地址:https://tangjiusheng.cn/js/102.html