Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
当我点击一个链接时,我的网站会自动更改其标题。我使用了在一定秒数后更改标题的代码,但我忘记了。我看到类似setinterval或类似的东西。那个代码是什么?
setinterval
你要setInterval
setInterval
setInterval(function() { //change title //document.title = "Some new title"; }, 3000);
最后3000的意思是每 3000 毫秒(3 秒)执行一次。
3000
您可以使用要执行的函数和以毫秒为单位的时间段来调用它:
setInterval(function() { // Do something every 2 seconds }, 2000);
设置间隔