这是这个问题的后续,在那里我发现了如何让代码每 x 秒重复一次。是否有可能举办一个可以改变这一点的事件?即我有一个复选框,用于控制是否重复,所以我想我需要这样的东西:
$(checkbox).bind("change", function() {
switch(whether if it is ticked or not) {
case [ticked]:
// Make the code repeat, while preserving the ability to stop it repeating
case [unticked]:
// Make the code stop repeating, while preserving the ability to start again
}
});
我不知道我可以在case
s 中放什么。