跑起來了啊
<!doctype html>
<html>
<head>
? ? <meta charset="UTF-8">
<title>發(fā)送驗(yàn)證碼</title>
<script type="text/javascript">
window.onload=function(){
? ? var send=document.getElementById('send'),
? ? ? ? times=60,
? ? ? ? timer=null;
? ? send.onclick=function(){
? ? ? // 計時開始?
? ? ? ? ? console.log(times);
? ? ? ? ? send.disabled='disabled';
? ? ? ? ? if(timer){clearInterval(timer);timer = null;}
? ? ? ? ? timer = setInterval(function(){
times--;
? ? ? ? ? ?send.value = times+"秒后重試";
? ? ? ? ? ?if(times<=0){
? ? ? ? ? ?clearInterval(timer);
? ? ? ? ? ?times = 60;
? ? ? ? ? ?send.disabled='';
? ? ? ? ? ?send.value = "發(fā)送驗(yàn)證碼";
? ? ? ? ? ?}
? ? ? ? ? ?},1000);
? ? ? ? ? ?
}?
}
</script>
</head>
<body>
<input type="button" id="send" value="發(fā)送驗(yàn)證碼">
</body>
</html>
2021-10-31
恭喜你