我想在 3 秒后重新加载页面,我们访问了该页面而不重复
我尝试使用
var t;
t=setTimeout(function(){
window.location.reload();
},3000);
但页面正在不断加载
所以我试过这样
var t;
t=setTimeout(function(){
clearTimeout(t);
window.location.reload();
},3000);
这个技巧也行不通
,任何人都可以帮助我如何在 3 秒后重新加载页面而不重复