Created
September 18, 2014 05:37
-
-
Save pekrockstar/8add956bd2d6c80b40b1 to your computer and use it in GitHub Desktop.
count down
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var _cdrun = { | |
seconds:120, | |
ok:true, | |
ui: function(){ | |
if(_cdrun.seconds>=0){ | |
__smsId.innerHTML="("+_cdrun.seconds+")秒后重新发送"; | |
__smsId.style.color="gray"; | |
__mobileId.disabled=true; | |
_cdrun.seconds--; | |
_cdrun.ok=false; | |
setTimeout(_cdrun.ui, 1000); | |
}else{ | |
__smsId.innerHTML="获取验证码"; | |
__smsId.style.color="#23A2D9"; | |
__mobileId.disabled=false; | |
_cdrun.ok=true; | |
_cdrun.seconds=120; | |
} | |
}}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment