function CountDown(){ var a=120; var time=setInterval(function(){ $('.get-code').html(a); if(a<1){ $('.get-code').html('获取验证码'); clearInterval(time); } a=a-1; },1000) }
posted on 2017-02-27 19:57 tank&? 阅读(104) 评论(0) 编辑 收藏 举报