美文网首页
2018-08-13

2018-08-13

作者: YTF1214 | 来源:发表于2018-08-13 20:02 被阅读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);
    }

    相关文章

      网友评论

          本文标题:2018-08-13

          本文链接:https://www.haomeiwen.com/subject/ogfpbftx.html