为了账号安全,请及时绑定邮箱和手机立即绑定
<!doctype html>
<html>
<head>
    <meta charset="UTF-8">
<title>send Validate Code</title>
<script type="text/javascript">
window.onload=function(){
   var send=document.getElementById('send'),
       times=60,
       timer=null;
   send.onclick=function(){
     // 计时开始
          if(timer){
              clearInterval(timer);
          }
     send.value=''+times+'秒后重试'
     clearInterval(timer);
          timer = setInterval(function(){

              if(times > 0){
               times--;
                send.value=''+times+'秒后重试';
              }else{
               clearInterval(timer);
                timer=null;
                send.disabled=false;
               send.value='发送验证码';
              }
            },1000)

   }
}
</script>
</head>
<body>
<input type="button" id="send" value="发送验证码">
</body>
</html>


正在回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信