首页 > 其他 > 详细

销毁定时器

时间:2019-10-03 23:14:43      阅读:97      评论:0      收藏:0      [点我收藏+]

1,

var myVar = setInterval(function(){ myTimer() }, 1000);
 
function myTimer() {
    var d = new Date();
    var t = d.toLocaleTimeString();
    document.getElementById("demo").innerHTML = t;
}
 
function myStopFunction() {
    clearInterval(myVar);
}

  https://www.runoob.com/jsref/met-win-clearinterval.html

销毁定时器

原文:https://www.cnblogs.com/yang101/p/11621048.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!