`
y806839048
  • 浏览: 1088720 次
  • 性别: Icon_minigender_1
  • 来自: 上海
文章分类
社区版块
存档分类
最新评论

计时获取验证码

阅读更多
var wait=60;
function getCode(){
var codeBtn = document.getElementById("codeBtn");
codeBtn.style.border="none";
codeBtn.style.fontSize="12px";
codeBtn.style.color="#9C9C9C";
codeBtn.value=wait+"秒后重新获取";
time(codeBtn);
$.ajax({
url:'${ctx}/statics!phoneMessage.json',
type:'POST',
data:{toolMessage:document.getElementById("phone").value},
async:false,
success:function(result){
code=result;
}
});
}
function time(o) {
if (wait == 0) {
o.value="获取验证码";
o.style.border="1px";
o.style.fontSize="14px";
o.style.color="black";
wait = 60;
} else {
o.value= wait + "秒后重新获取";
wait--;
setTimeout(
function() {
time(o)
},1000)
}
}
分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics