定时器问题
function play() {
timer = setTimeout(function () {
next.onclick();
play();
}, interval);
}
function stop() {
clearTimeout(timer);
}
老师的这段语言 如果改成这样 为什么会不能调用 或者越来越快
function play() {
clearInterval ( timer ) ;
timer = setIntervalw(function () {
next.onclick();
}, interval);
}
function stop() {
clearTimeout(timer);
}
而且为什么这样写会出现错误
setInterval(next.click(),3000)