js 短信倒计时60s
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Document</title> </head> <style> #getCode { width: 9rem; height: 3rem; line-height: 3rem; font-size: 1.2rem; background-color: #3a3a3a; color: #fff; border-radius: 0.8rem; border: none; text-align: center; } #getCode[disabled] { background-color: #B6B6B6; } </style> <body> <button id="getCode">获取验证码</button> </body> <script src="https://cdn.bootcss.com/jquery/1.7.2/jquery.min.js"></script> <script> $(function() { //获取验证码 var getCode = document.getElementById('getCode'); var wait = 60; function time(btn) { if (wait === 0) { btn.removeAttribute("disabled"); btn.innerHTML = "获取验证码"; wait = 60; } else { btn.setAttribute("disabled", true); btn.innerHTML = wait + "秒后重试"; wait--; setTimeout(function() { time(btn); }, 1000); } } getCode.onclick = function() { time(this); }; }) </script> </html>
相关推荐
88274956 2020-11-03
Zhongmeishijue 2020-09-10
runner 2020-09-01
梦的天空 2020-08-25
IdeaElements 2020-08-19
luvhl 2020-08-17
移动开发与培训 2020-08-16
ReunionIsland 2020-08-16
lyqdanang 2020-08-16
NARUTOLUOLUO 2020-08-03
MyNameIsXiaoLai 2020-07-08
星辰的笔记 2020-07-04
csstpeixun 2020-06-28
letheashura 2020-06-26
liaoxuewu 2020-06-26
OldBowl 2020-06-26
北京老苏 2020-06-25
Luffyying 2020-06-25