验证码60秒禁用

71 阅读1分钟
<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);}

上面那个不太好,要使用一个全局变量,不建议使用arguments.callee,这已经被废弃了 改一下


function time(o,wait) {
		if (wait == 0) {
			o.removeAttribute("disabled");
			o.value="免费获取验证码";
			}
		 else {
			o.setAttribute("disabled", true);
			o.value="重新发送(" + wait + ")";
			wait--;
			setTimeout(function() {
				time(o,wait)
			},
			1000)
		}
	}
document.getElementById("btn").onclick=function(){time(this);}

代码来源互联网,我已经忘记从哪来的了