码迷,mamicode.com
首页 > Web开发 > 详细

Chrome自动刷新网页脚本

时间:2020-05-27 18:35:28      阅读:175      评论:0      收藏:0      [点我收藏+]

标签:with   新网   current   frame   自动   src   ace   脚本   rom   

脚本用于在Chrome的Console内定时刷新网页

timeout=prompt("Set timeout (Second):");
count=0
current=location.href;
if(timeout>0)
setTimeout(‘reload()‘,1000*timeout);
else
location.replace(current);
function reload(){
setTimeout(‘reload()‘,1000*timeout);
count++;
console.log(‘每(‘+timeout+‘)秒自动刷新,刷新次数:‘+count);
fr4me=‘<frameset cols=\‘*\‘>\n<frame src=\‘‘+current+‘\‘/>‘;
fr4me+=‘</frameset>‘;
with(document){write(fr4me);void(close())};
}

 

Chrome自动刷新网页脚本

标签:with   新网   current   frame   自动   src   ace   脚本   rom   

原文地址:https://www.cnblogs.com/88223100/p/Chrome-Auto-Refresh.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!