定时器

2018-07-31  本文已影响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);
}
上一篇下一篇

猜你喜欢

热点阅读