每隔 xxxx 秒 刷新一次页面
Posted coder1013
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了每隔 xxxx 秒 刷新一次页面相关的知识,希望对你有一定的参考价值。
每隔30秒 刷新一次页面
<head> <meta http-equiv="refresh" content="30"> </head>
或者使用JS定时器
//每隔1秒调用 show() 函数 <script type="text/javascript"> function show(){ alert(11); } setInterval("show()","1000"); </script>
以上是关于每隔 xxxx 秒 刷新一次页面的主要内容,如果未能解决你的问题,请参考以下文章