Web中的页面刷新
由于本人比较讨厌Web、因此这方面关注的比较少也基本上不知道什么,今天整理资料看到本本上还有这么一篇总结,又不忍心将它扔掉,所以也就抛上来了,就当是分享吧。
1.实现页面自动刷新
把如下代码加入到<head>区域
<meta http-equiv="refresh" content="5">
2.页面自动跳
<meta http-equiv="refresh" content ="5;url=http://www.baidu.com">
指定隔5秒后跳转到指定的页面httt://www.baidu.com,如果是当前页面,则为自动刷新。
3.setTimeout()方法实现。
<body onload="setTimeout('history.go(0),5000')">
<body onload="setTimeout('this.location.reload();',5000)">
可以通过脚本实现:
<script language="javascript">
function chang()
{
document.location='http://ww.baidu.com';
}
setTimeout(chang,50000); //定时执行
//setInterval(chang,5000); //间隔执行
//setTimeout("document.location='http://www.baidu.com'",3000)
</script>
4.按钮刷新得N种方法
<input type=button value="刷新" onclick="history.to(0)">
<input type=button value="刷新" onclick="location.reload()">
<input type=button value="刷新" onclick="location=location">
<input type=button value="刷新" onclick="document.execCommand('Refresh')">
<input type=button value="刷新" onclick="window.navigate(location)">
<input type=button value="刷新" onclick="location.replace(location)">
<intpu type=button value="刷新" onclick="window.open('http://www.baidu.com'),'_self')">
<input type=button value="刷新" onclick="window.all.WebBrowser.ExecWb(22,1)">