2018-08-15

2018-08-12  本文已影响0人  哇塞薛之谦

一次性定时器:setTimeout
清除一次性定时器用clearTimeout

var timer=setTimeout(show,3000);
btn1.onclick=function(){
clearTimeout(timer);
}
永久性定时器:setInterval
清除永久性定时器用clearInterval

var times=setInterval(print,1000);
btn2.onclick=function(){
clearInterval(times);
}

上一篇下一篇

猜你喜欢

热点阅读