自动刷新页面的方法:
1.页面自动刷新:把如下代码加入<head>区域中
<meta http-equiv="refresh" content="2">
其中2指每隔2秒刷新一次页面.
2.页面自动跳转:把如下代码加入<head>区域中
<meta http-equiv="refresh" content="2;url=http://www.google.com">
其中2指隔2秒后跳转到http://www.google.com/页面
3.页面自动刷新JS版- <script type="text/javascript">
- function myrefresh()
- {
- window.location.reload();
- }
- setTimeout('myrefresh()',1000); //指定1秒刷新一次
- </script>
复制代码 |