码迷,mamicode.com
首页 > 其他好文 > 详细

常用脚本:重载、刷新 、当前、自身页面

时间:2015-09-17 17:14:06      阅读:141      评论:0      收藏:0      [点我收藏+]

标签:

应用场景:

需要定时刷新的页面;通过ajax更新后需要显示新数据等多种情况。

实现方法

有多少方法可以实现,如:

 

history.go(0)
window.location.reload()
window.location.reload(true) 
location=location
location.assign(location)
document.execCommand(‘‘Refresh‘‘)
window.navigate(location)
location.replace(location)
document.URL=location.href

考虑到兼容性,最后会多半会采用语句

window.location = window.location

在GET方法访问下,通常这个方法会在本地缓存中重新加载一次,于是有了这样的方法,给地址加一个随机数让浏览器去再次请求服务器地址。

代码如下

 function reloadLocation()
    {
        var t = new String(window.location);
        if (t.indexOf(‘r=‘) > 0) {
            t = t.replace(/r=[0123456789\.]+/gi, ‘r=‘ + Math.random());
        }
        else {
            if (t.indexOf(‘?‘) > 0) {
                t = t + ‘&r=‘ + Math.random();
            }
            else {
                t = t + ‘?r=‘ + Math.random();
            }
        }
        window.location = t;
   }

使用须知  

该方法会占用url r 参数,还请多多注意

 

如果大家有更好的方法,欢迎告知。

 

常用脚本:重载、刷新 、当前、自身页面

标签:

原文地址:http://www.cnblogs.com/zyug/p/4816503.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!