JS脚本实现
<script language="JavaScript"> function myrefresh(){ window.location.reload(); } setTimeout('myrefresh()',1000); //1秒刷新一次 </script> <body onload= "myrefresh()"> ... </body>
<meta http-equiv="refresh" content="5;url=http://www.baidu.com" />