为什么运行不了,经常这样和别人的代码一模一样也运行不了
为什么运行不了,经常这样和别人的代码一模一样也运行不了
2015-11-19
<!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>
举报