码迷,mamicode.com
首页 > Web开发 > 详细

js 定时器

时间:2019-04-25 01:07:05      阅读:138      评论:0      收藏:0      [点我收藏+]

标签:timeout   clear   set   ons   bsp   res   去掉   int   pre   

 

//定时器间隔0.5s,启动定时器后,等待3s

refreshCount=function() {
      var time = 500;
      var interval; //调度器对象。
      function fun(){
        console.log("获取进度");
      }
      interval = setInterval(fun,time);//去掉引号就对了
      return interval
    }

x=refreshCount();
setTimeout(function(){clearInterval(x);console.log("结束定时器!");}, 3000);

输出

"获取进度"
"获取进度"
"获取进度"
"获取进度"
"获取进度"
"获取进度"
结束定时器!

 

js 定时器

标签:timeout   clear   set   ons   bsp   res   去掉   int   pre   

原文地址:https://www.cnblogs.com/sea-stream/p/10765765.html

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