获取验证码
Posted 最爱小虾
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了获取验证码相关的知识,希望对你有一定的参考价值。
获取验证码倒计时:
<!DOCTYPE html> <html> <head> <title>获取验证码倒计时</title> </head> <body> <input id="btn" value="获取验证码" onclick="time(this);"> <script type="text/javascript"> var wait = 60; document.getElementById("btn").disabled = false; 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); } } </script> </body> </html>
以上是关于获取验证码的主要内容,如果未能解决你的问题,请参考以下文章