最新消息: 新版网站上线了!!!

点击按钮出现60秒倒计时js代码

  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">  
  2. <html xmlns="http://www.w3.org/1999/xhtml">  
  3. <head>  
  4. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />  
  5. <title>无标题文档</title>  
  6. <script type="text/javascript" src="js/jquery.js"></script>  
  7. </head>  
  8.  
  9. <body>  
  10. <input type="button" id="btn" value="免费获取验证码" onclick="settime(this)" />  
  11. <script type="text/javascript">  
  12. var countdown=60;  
  13. function settime(val) {  
  14. if (countdown == 0) {  
  15. val.removeAttribute("disabled");     
  16. val.value="免费获取验证码";  
  17. countdown = 60;  
  18. } else {  
  19. val.setAttribute("disabled", true);  
  20. val.value="重新发送(" + countdown + ")";  
  21. countdown--;  
  22. }  
  23. setTimeout(function() {  
  24. settime(val)  
  25. },1000)  
  26. }  
  27. </script>  
  28. </body>  
  29. </html> 

 

.....

转载请注明:谷谷点程序 » 点击按钮出现60秒倒计时js代码