有没有办法在计时器达到 0 时显示一条消息,然后重新启动计时器?
我想在 JavaScript 计时器内部显示一条消息,一旦它达到 0 并重新启动。 我的计时器的代码和我的其他问题尚未得到解答:
i want to display a message while inside of a javascript timer once it hits 0 and restarts.
The code for my timer and my other question like this that hasnt been answered:
How do you display a message once a javascript function restarts?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
试试这个。
您缺少
window.clearInterval
的正确实现<代码>window.setInterval如下。
Try this.
You were missing the correct implementation of
window.clearInterval
The signature of
window.setInterval
is as follows.