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

为什么运行不了,经常这样和别人的代码一模一样也运行不了

为什么运行不了,经常这样和别人的代码一模一样也运行不了

正在回答

4 回答

<!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(){

  //alert(0);

  timer=setInterval(autoCount,1000);

}

       function autoCount(){

           send.value=times+"秒后重试";

           send.disabled="false";

           times--;

           if(times<0){

               clearInterval(timer);

               autoStop();

           }

       }   

       function autoStop(){

           send.value="发送验证码";

           send.removeAttribute("disabled");

           times=60;

       }

   }

</script>

</head>

<body>

<input type="button" id="send" value="发送验证码">

</body>

</html>


0 回复 有任何疑惑可以回复我~

少个“}”大括号

0 回复 有任何疑惑可以回复我~

哎  自己老范低级错误

0 回复 有任何疑惑可以回复我~

少个“}”大括号吧

0 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

为什么运行不了,经常这样和别人的代码一模一样也运行不了

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