首页 > 其他 > 详细

连续点击造成定时器叠加的解决方案

时间:2016-01-13 19:49:02      阅读:170      评论:0      收藏:0      [点我收藏+]

var timer = null;// typrof timer == ‘object‘;

timer = setInterval(function() {

  //...

}, 1000);//  typeof timer == ‘number‘

clearInterval(timer);// typeof timer == ‘number‘

timer = null; // typrof timer == ‘object‘;

 

即在清楚定时器的时候加上timer = null 在开启定时器的时候判断 if(typeof timer  == ‘object‘){

  //开启定时器

}

连续点击造成定时器叠加的解决方案

原文:http://www.cnblogs.com/pcd12321/p/5128153.html

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