有没有办法通过 Onclick 按钮终止 setInterval 循环
因此,我使用附加到 onClick 的 setInterval 在此函数中实现了无限循环。问题是,我无法在 onClick 中使用clearInterval 来阻止它。我认为这是因为当我将clearInterval附加到onClick时,它会杀死特定的时间间隔,而不是完全杀死该函数。我可以做些什么来通过 onClick 来杀死所有间隔?
这是我的 .js 文件,我正在拨打的电话是
input type="button" value="generate" onClick="generation();
input type="button" value="Infinite Loop!" onclick="setInterval('generation()',1000);"
input type="button" value="Reset" onclick="clearInterval(generation(),80;" // This one here is giving me trouble.
So, I got an infinite loop to work in this function using setInterval attached to an onClick. Problem is, I can't stop it using clearInterval in an onClick. I think this is because when I attach a clearInterval to an onClick, it kills a specific interval and not the function altogether. Is there anything I can do to kill all intervals through an onClick?
Here's my .js file and the calls I'm making are
input type="button" value="generate" onClick="generation();
input type="button" value="Infinite Loop!" onclick="setInterval('generation()',1000);"
input type="button" value="Reset" onclick="clearInterval(generation(),80;" // This one here is giving me trouble.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
setInterval 返回一个句柄,您需要该句柄,以便
最简单地清除它,在 html 头中为句柄创建一个 var,然后在 onclick 中使用 var
http://www.w3schools.com/jsref/met_win_clearinterval.asp
setInterval returns a handle, you need that handle so you can clear it
easiest, create a var for the handle in your html head, then in your onclick use the var
http://www.w3schools.com/jsref/met_win_clearinterval.asp
clearInterval
应用于setInterval
的返回值,如下所示:clearInterval
is applied on the return value ofsetInterval
, like this:让 Generation(); 调用
setTimeout
本身,而不是setInterval
。也就是说,您可以在函数中使用一些 if 逻辑来防止它很容易地运行setTimeout
。}
Have
generation();
callsetTimeout
to itself instead ofsetInterval
. That was you can use a bit if logic in the function to prevent it from runningsetTimeout
quite easily.}