如何跳过 setInterval 函数的第一次延迟?
当我们使用 setInterval 时,它会延迟指定的时间,然后运行第一个参数中指定的函数。如果我不想第一次延迟该怎么办?
我有一个解决方案,首先调用该函数,然后使用 setInterval,这样第一次调用就不会出现延迟。但这不是正确的解决方案。因此,如果有人有其他解决方案,请告诉我。
when we use setInterval it delays for specified time and then run the function specified in 1st argument. What should i do if I dont want the delay for the 1st time?
I have one solution that call the function initially and then use setInterval so for the 1st call delay will not be there. but It is not proper solution. So If anybody have some another Solution Then kindly let me know that.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
立即这样做:)
does that imediatelly :)
阅读这篇文章。 更改 SetInterval 运行时的时间间隔
Peter Bailey 有一个很好的通用函数,但是 gnarf 也有一个很好的小例子。
您必须为此创建自己的计时器。 SetInterval 不允许您在执行时更改间隔延迟。在回调循环中使用 setTimeout 应该允许您编辑间隔时间。
read this post. Changing the interval of SetInterval while it's running
Peter Bailey has a good generic function, however gnarf also has a nice little example.
You will have to create your own timer for this. SetInterval does not allow you to change the interval delay while its being executed. Using setTimeout within a callback loop should allow you to edit the interval time.
另一种方式:
Another way:
为此创建一个包装器。
Create a wrapper for that.