js 点击获取验证码后的倒数60s

<!DOCTYPE html>
<html> <head>
<meta charset="UTF-8" />
<script type="text/javascript">
window.onload = function() {
var getCheckNum = document.getElementById("getCheckNum");
getCheckNum.onclick = function() {
settime(this)
}
}
var countdown = 60; function settime(obj) {
if(countdown == 0) {
obj.removeAttribute("disabled");
obj.value = "免费获取验证码";
countdown = 60;
return;
} else {
obj.setAttribute("disabled", true);
obj.value = countdown + "s";
countdown--;
}
setTimeout(function() {
settime(obj)
}, 1000)
}
</script>
</head> <body>
<input type="button" class="getCheckNum" id="getCheckNum" value="免费获取验证码" />
</body> </html>

  

上一篇:用户点击获取验证码之后我们会发送一条信息到用户手机,然后就会出现一个倒计时按钮,很像支付宝手机付款效果了,下面我给大家分享两个js效果


下一篇:51Nod1222 最小公倍数计数 数论 Min_25 筛