JavaScript setInterval 限制?

发布于 2024-12-11 01:46:46 字数 89 浏览 0 评论 0原文

我有一个使用 JavaScript 的 setInterval() 来运行数字时钟的应用程序。我想知道它执行此函数的次数是否有超时或限制。

I have an application using JavaScript's setInterval() to run a digital clock. I was wondering if it has a timeout, or limit, to the amount of times it can execute this function.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

千纸鹤 2024-12-18 01:46:46

setInterval() 将无限运行。

如果您想终止“循环”,可以使用clearInterval。例如:

var counter = 0;

var looper = setInterval(function(){ 
    counter++;
    console.log("Counter is: " + counter);

    if (counter >= 5)
    {
        clearInterval(looper);
    }

}, 1000);

setInterval() will run infinitely.

If you wish to terminate the 'loop' you can use clearInterval. For example:

var counter = 0;

var looper = setInterval(function(){ 
    counter++;
    console.log("Counter is: " + counter);

    if (counter >= 5)
    {
        clearInterval(looper);
    }

}, 1000);
最冷一天 2024-12-18 01:46:46

否,给定的函数将继续执行,直到您使用 clearInterval() 手动清除间隔。

请注意,在大多数浏览器中,当页面位于后台选项卡中时,您的函数仍将执行,但移动浏览器(特别是 IOS5 Safari)可能会释放页面,直到其再次聚焦/可见。

No, the given function will keep being executed until you clear the interval manually with clearInterval()

Note that in most browsers, your function will still be executed when the page is in a background tab, but mobile browsers (notably IOS5 Safari) may free the page until its focused / visible again.

清风无影 2024-12-18 01:46:46

正如其他人提到的,间隔运行的次数没有限制,但是如果您打算无限期地运行计时器,您应该考虑这里的信息:

后台选项卡上的最小 setInterval()/setTimeout() 延迟

如果您的用户可能会退出, 1 秒似乎是安全的最小间隔

As others have mentioned, there is not limit to the number of times your interval will run, however if you intend to run a timer indefinitely you should consider the info here:

Minimum setInterval()/setTimeout() delay on background tabs

If your user is likely to tab-out, 1 second seems to be safe minimum interval

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文