获取短信验证码倒计时

Posted 爱尚丽明

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了获取短信验证码倒计时相关的知识,希望对你有一定的参考价值。

    1. <input type="button" id="btn" value="免费获取验证码" />  
    2. <script type="text/javascript">  
    3. var wait=60;  
    4. function time(o) {  
    5.         if (wait == 0) {  
    6.             o.removeAttribute("disabled");            
    7.             o.value="免费获取验证码";  
    8.             wait = 60;  
    9.         } else {  
    10.             o.setAttribute("disabled", true);  
    11.             o.value="重新发送(" + wait + ")";  
    12.             wait--;  
    13.             setTimeout(function() {  
    14.                 time(o)  
    15.             },  
    16.             1000)  
    17.         }  
    18.     }  
    19. document.getElementById("btn").onclick=function(){time(this);}  
    20. </script

以上是关于获取短信验证码倒计时的主要内容,如果未能解决你的问题,请参考以下文章

js实现发送短信验证码倒计时教程

js,JQ获取短信验证码倒计时

使用Jquery实现获取短信验证码60秒倒计时

iOS 短信验证码倒计时按钮的实现

js 发送短信验证码倒计时

jquery 倒计时 60秒 短信 验证码 js ajax 获取