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

js 倒计时10s

时间:2017-07-25 15:51:05      阅读:186      评论:0      收藏:0      [点我收藏+]

标签:color   blog   cli   onclick   log   html   class   time   led   

<button id="send">允许点击</button>
var wait = 10;
 function time(o){
     if(wait==0){
         o.innerHTML = "允许点击";
         o.removeAttribute(‘disabled‘,true);
                 wait = 10
      }else{
            o.innerHTML = "无法点击"+wait;
             console.log(wait)
             o.setAttribute(‘disabled‘,true);
             wait--;
              setTimeout(function(){
               time(o)
     },1000)
  }        
 }
            document.getElementById(‘send‘).onclick = function(){
                time(this)
            }

 

js 倒计时10s

标签:color   blog   cli   onclick   log   html   class   time   led   

原文地址:http://www.cnblogs.com/freddyhuang/p/7233853.html

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