小编典典

如何每 5 秒重新加载一次页面?

all

我正在将一种布局转换为 html;一旦我在代码/html/css 中进行了更改,每次我都必须按 F5。有没有任何简单的 javascript/jQuery
解决方案?即,在我添加脚本后,每 5 秒(或其他特定时间)重新加载整个页面。


阅读 60

收藏
2022-06-27

共1个答案

小编典典

 <meta http-equiv="refresh" content="5; URL=http://www.yourdomain.com/yoursite.html">

如果它必须在脚本中,请使用setTimeout,例如:

setTimeout(function(){
   window.location.reload(1);
}, 5000);
2022-06-27