JS实现无限刷新网站页面(可自定义时间)
- A
<html> <head> <title>hello world</title> </head> <body> <script language="JavaScript"> function myrefresh() { window.location.reload(); } setTimeout('myrefresh()',8000); </script> <div id="testloadimg"> </div> <script type="text/javascript"> var arr = ["https://www.asphp.net/"]; function timedCount() { var content = ""; for (var i = 0; i < arr.length; i++) { content += "<img src=\""+arr[i]+"?r=" + Math.random() + "\" />"; } document.getElementById("testloadimg").innerHTML = content; setTimeout("timedCount()", 20000); } timedCount(); </script> </body>
利用JavaScript达到无限刷新某些网站页面的目的,在arr里面添加所需要刷新的网站,默认时间单位为秒。
傲世》原创,转载请保留文章出处。
本文链接:https://www.recho.cn/17.html
如您对本文章内容有所疑问、反馈或补充,欢迎通过邮箱:admin@h2fast.cn 联系我们!
版权声明:若无特殊注明,本文为《正文到此结束