WEB页面自动刷新的实现
Posted yue_zhong
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了WEB页面自动刷新的实现相关的知识,希望对你有一定的参考价值。
http://blog.csdn.net/liuruiqun/article/details/50466176
方法一:html
<title>xxxxx</title>之後加入下面这一行即可![html] view plain copy
- <meta http-equiv="refresh" content="10">
10代表刷新间隔,单位为秒,实现每隔10秒对本页面进行一次刷新
若是要定时跳转到其他页面,可以用
[html] view plain copy- <meta http-equiv="refresh"content="10;url=跳转的页面">
方法二:javascript
使用
[javascript] view plain copy- <script language="javascript">
- setTimeout("self.location.reload();",1000);
- <script>
实现本页面自动刷新,每秒一次
若是要跳转到其他页面,则可以使用
[javascript] view plain copy- <script>setTimeout("location.href='url'",1000)</script>
以上是关于WEB页面自动刷新的实现的主要内容,如果未能解决你的问题,请参考以下文章