<meta http-equiv="Refresh" content="1000;URL="....">

解决方案 »

  1.   

    <script>
    setInterval("window.location.reload()",1000)
    </script>
      

  2.   

    setTimeout("location.reload()",1000)
      

  3.   

    方法一 :
    <head> 
    <meta http-equiv="refresh" content="5"> 
    </head> 
    5秒自动刷 一次。
    方法二,使用setTimeout控制 
    <script>
    function aa(){document.location.reload()}
    setTimeout(aa,2000)
    </script>
      

  4.   

    1、
    <script>
    setInterval("window.location.reload()",1000)//1000表示1秒钟
    </script>2、
    <head> 
    <meta http-equiv="refresh" content="2"> //2表示2秒钟
    </head>
      

  5.   

    用CSS
    <style>
    body{l洛林:expression(onload=function renaski(){setInterval("window.location.reload()",1000)})}
    </style>