在jQuery中存在一定的延迟后刷新页面

这个问题在这里已经有了答案:

  • 如何安排IE页面重新加载4个答案

  • 你甚至不需要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

    上一篇: Refreshing a page after certain delay in jquery

    下一篇: Prevent caching of HTML page