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)
}
原文:http://www.cnblogs.com/tanks/p/6476015.html