获取短信验证码倒计时
Posted 爱尚丽明
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了获取短信验证码倒计时相关的知识,希望对你有一定的参考价值。
- <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>
以上是关于获取短信验证码倒计时的主要内容,如果未能解决你的问题,请参考以下文章