专注主机服务与安全!
  • 网站黑链监测软件

为什么选择我们

  • 18年机房维护经验
  • 多款自研安全工具
  • 国内海外多机检测
  • 在线自动实时检测
  • 独家文件监控功能
  • 检测故障自动恢复
  • 保障全年不间断运行
  • 7*24小时技术维护

如何用js代码实现点击按钮出现60秒倒计时效果
 
发布时间:2021/12/5 13:31:47
 
如何用js代码实现点击按钮出现60秒倒计时效果

这里直接上代码:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>因尔特网络数据,专业网站建设,虚拟主机空间,云主机,服务器</title>
</head>

<body><input type="button" id="btn" value="免费获取验证码" />
<script type="text/javascript">
var wait=60;
function time(o) {
if (wait == 0) {
o.removeAttribute("disabled");
o.value="免费获取验证码";
wait = 60;
} else {
o.setAttribute("disabled", true);
o.value="重新发送(" + wait + ")";
wait--;
setTimeout(function() {
time(o)
},
1000)
}
}
document.getElementById("btn").onclick=function(){time(this);}
</script>
</body>
</html>

一些网站新用户注册,或手机网站用户注册,需要短信验证、实名认证均需要用到类似这样的代码
避免用户短时间内重复按发送短信验证,有一个时间间隔。符合实际情况。
 
 
微信客服
 
网页客服