在jQuery中存在一定的延迟后刷新页面
这个问题在这里已经有了答案:
你甚至不需要jQuery或HTML5:
setTimeout(location.reload.bind(location), 60000);
这将等待1分钟(60,000毫秒),然后调用location.reload
函数,这是一个内置函数来刷新页面。
setTimeout(function(){
location.reload();
},delayTime); //delayTime should be written in milliseconds e.g. 1000 which equals 1 second
你可以试试这个没有js的循环:
<meta http-equiv="refresh" content="5"/> <!-- 5 sec interval-->
<h1>Page refersh in every 5 seconds...</h1>
你甚至可以导航到不同的页面,访问谷歌的主页
<meta http-equiv="refresh" content="5;http://www.google.com"/> <!-- 5 sec delay-->
<h1>Redirecting in 5 seconds...</h1>
链接地址: http://www.djcxy.com/p/28681.html