每隔 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>
注重细节——关注底层——注重细节——关注底层——注重细节——关注底层——注重细节——关注底层——注重细节——关注底层
原文地址:https://www.cnblogs.com/PJG20/p/12960236.html