qq_枫_
2016-12-20 12:03
<!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--;
if(times<=0){
clearInterval(timer);
send.value="发送验证码";
send.disabled="";
times=60;
}else{
send.value=times+"秒后重试";
send.disabled="true";
}
},1000);
}
}
</script>
</head>
<body>
<input type="button" id="send" value="发送验证码">
</body>
</html>
disabled:禁用的意思;true就是禁用的意思,FALSE就是开启的意思,相当于 负负得正 的那个意思
把false的引号去掉就可以用
Tab选项卡切换效果
65465 学习 · 533 问题
相似问题