倒计时60s短信 [记录]
Posted 丶七月小先生丶
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了倒计时60s短信 [记录]相关的知识,希望对你有一定的参考价值。
//短信操作
var wait=60;
function time() {
var code = document.getElementById(‘code_send‘);
if (wait == 0) {
code.removeAttribute("disabled");
code.innerhtml="获取验证码";
wait = 60;
} else { // www.jbxue.com
code.setAttribute("disabled", true);
code.innerHTML="重新发送(" + wait + ")";
wait--;
setTimeout(function() {
time()
},
1000)
}
}
以上是关于倒计时60s短信 [记录]的主要内容,如果未能解决你的问题,请参考以下文章