小编典典

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

javascript

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


阅读 347

收藏
2020-05-01

共1个答案

小编典典

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

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

setTimeout(function(){
   window.location.reload(1);
}, 5000);
2020-05-01