为了账号安全,请及时绑定邮箱和手机立即绑定

代码只执行一次,再点击就没用了

<!doctype html>
<html>
<head>
    <meta charset="UTF-8">
<title>Document</title>
<script type="text/javascript">
window.onload=function(){
   var send=document.getElementById('send'),
       times=60;
       timer=null;
   send.onclick=function(){
     timer=setInterval(function(){ 
            times--
            send.value=times+"秒后重试" 
            send.disabled=true
             
          if(times<=50){  
              clearInterval(timer);
              send.disabled=false
              send.value="发送验证码";
            } 
    },1000);
 
}
}
</script>
</head>
<body>
<input type="button" id="send" value="发送验证码">
</body>
</html>


正在回答

1 回答

times忘了重置
0 回复 有任何疑惑可以回复我~
#1

qq_小白_7 提问者

非常感谢!
2015-09-26 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

代码只执行一次,再点击就没用了

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信