如何用批处理,每过一段时间刷新一下特定网页
发布网友
发布时间:2022-10-10 20:11
我来回答
共4个回答
热心网友
时间:2023-10-09 09:57
用批处理来写,还不如用JS写,把下面的代码存为一个HTML文件,你鼠标双击在浏览器里面打开,就可以每5秒打开一个网页了(多个网页轮流的话不断往数组里面写就行了):
<iframe name=ii></iframe>
<script type=text/javascript>
var i=0;
var urls=['http://www.baidu.com','http://zhidao.baidu.com'];
function f(){
ii.location.href=urls[i];
i++;
i%=urls.length;
setTimeout(f,5000);
}
f();
</script>
热心网友
时间:2023-10-09 09:58
如果你有兴趣的话,就研究一下这个吧,
Dim WshShell
Set WshShell=WScript.CreateObject("WScript.Shell")
WshShell.Run "notepad"
WScript.Sleep 2000
WshShell.AppActivate "无标题-记事本"
WshShell.SendKeys "hello, welcome to cfan"
保存为.vbs格式就可以运行了。
也可以用cscript a.vbs运行。会自动在记事本上输出hello, welcome to cfan
热心网友
时间:2023-10-09 09:58
用马桶浏览器可以定时刷新功能的,设置后台刷新,你打开马桶就可以刷新了
热心网友
时间:2023-10-09 09:59
你是不是想刷网页流量?用这个吧http://www.anqn.com/soft/h/2006-03-19/a0978607.shtml
参考资料:http://www.anqn.com/soft/h/2006-03-19/a0978607.shtml