码迷,mamicode.com
首页 > 其他好文 > 详细

页面存在多个setInterval

时间:2017-12-08 13:52:03      阅读:161      评论:0      收藏:0      [点我收藏+]

标签:bsp   second   页面   func   int   ...   color   val   nbsp   

var firstInterval;
var secondInterval;

function firstFunction(){
     if(firstInterval) clearInterval(firstInterval);
      //code...
      firstInterval = setInterval(‘firstFunction()‘, 1000);
}


function secondFunction(){
    if(secondInterval) clearInterval(secondInterval);
        secondInterval = setInterval(‘secondFunction()‘, 2000);
}

 

页面存在多个setInterval

标签:bsp   second   页面   func   int   ...   color   val   nbsp   

原文地址:http://www.cnblogs.com/Doduo/p/8004464.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!