zoukankan      html  css  js  c++  java
  • 获取验证码倒计时。

      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
      21. 使用jqm的页面,自带input的样式,如果不需要jqm的默认样式需要在input域中添加data-role='none'
  • 相关阅读:
    解析HTTP协议六种请求方法
    金蝶
    普元
    中间件
    [CTSC2008] 网络管理
    【Uva 10498】满意值
    【SPOJ839】最优标号
    bzoj2879 [Noi2012]美食节
    bzoj3144 [Hnoi2013]切糕
    bzoj3112 [Zjoi2013]防守战线
  • 原文地址:https://www.cnblogs.com/zkx001/p/4819582.html
Copyright © 2011-2022 走看看