var wait=60;
function time(o) {
if (wait == 0) {
$("#codeForButton").removeAttr("disabled");
$("#codeForButton").val("获取验证码");
wait = 60;
} else {
$("#codeForButton").attr("disabled", true);
$("#codeForButton").val("重新发送(" + wait + ")");
wait--;
setTimeout(function() {
time(o);
}, 1000)
}
}
使用时只需要调用,将 验证码按钮标签对象传进来就好了.
网友评论