浏览器console控制台自动刷新js代码

如chrome浏览器F12呼出控制台,粘贴以下代码回车,提示输出刷新的时间间隔就可以开始自动刷新了。

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())};
}

相关推荐: 如何挂载BuyVM Block Storage存储块

1、在buyvm管理后台将购买的存储块attach加载到需要的vps上 2、在vps中检查储存块是否加载成功ls /dev/disk/by-id/ #返回如下 ata-QEMU_DVD-ROM_QM00004 scsi-0BUYVM_SLAB_VOLUME-8…

© 版权声明
THE END
喜欢就支持一下吧
点赞0
分享
评论 抢沙发

请登录后发表评论