js实现网页自动刷新

来源:互联网 发布:d3.js 地图热力图 编辑:程序博客网 时间:2024/04/29 06:36
<!doctype html><html lang="en"> <head>  <meta charset="UTF-8">  <meta name="Generator" content="EditPlus®">  <meta name="Author" content="">  <meta name="Keywords" content="">  <meta name="Description" content="">  <title>节日倒计时</title> </head> <body><script type="text/javascript"> window.open('http://www.2345.com/?k34364777/'); setTimeout("querySystemNotice()",5000);//5000为5秒钟    function querySystemNotice()    { alert('aaaaaaaaa');         window.location.reload();    } </script> </body></html>


0 0