实现网页自动刷新的3种代码

时间:2021-11-14 06:00:48

(1)把如下代码加入<head>区域中:   

 <meta http-equiv="refresh" content="20">

其中20指每隔20秒刷新一次页面.


 (2)页面自动刷新js版:  
     <script language="JavaScript">
        function myrefresh(){
        window.location.reload();
        }
        setTimeout('myrefresh()',1000); //指定1秒刷新一次
     </script>


  (3)页面自动跳转:把如下代码加入<head>区域中

      <meta http-equiv="refresh" content="20;url=http://www.hackhome.com">

        其中20指隔20秒后跳转到http://www.hackhome.com页面