每隔 x秒 刷新一次页面

Posted gjh99

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了每隔 x秒 刷新一次页面相关的知识,希望对你有一定的参考价值。

每隔30秒 刷新一次页面

<head>
  <meta http-equiv="refresh" content="30">
</head>

 

或者使用JS定时器

//每隔1秒调用 show() 函数
<script type="text/javascript">
  function show()
    alert(11);
  
  setInterval("show()","1000");
</script>

 

 



以上是关于每隔 x秒 刷新一次页面的主要内容,如果未能解决你的问题,请参考以下文章

每隔 xxxx 秒 刷新一次页面

每隔10秒刷新页面 vue

如何使用laravel每隔x秒自动刷新div

使用 $timeout 每隔 x 次刷新一次范围

没有写入时,为啥 Elasticsearch 每隔“n”秒执行一次索引?

页面定时刷新或自动跳转