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

2022-08-30 01:13:39

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


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

如果它必须在脚本中,请使用 setTimeout,如下所示:

setTimeout(function(){
   window.location.reload(1);
}, 5000);

答案 2

要重新加载同一页面,您不需要第二个参数。您只需使用:

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

这将每 30 秒触发一次重新加载。