好的,所以我试图通过更改元素的 id 并将两个不同的函数应用于不同的 id 来启动/停止 setInterval 函数。这是目前的代码:
$(document).ready(function(){
var seq
$('#start').click(function(){
$(this).attr('id','stop');
seq=self.setInterval(function(){blah()},125);
});
$('#stop').click(function(){
$(this).attr('id','start');
clearInterval(seq);
});
});
当我单击#start 元素时,setInterval 开始并且id 更改为#stop,但是如果我再次单击(在现在称为#stop 的元素上),则执行#start 的代码(添加了另一个setInterval)谢谢
函数'blah'只是一个组成函数的例子