代码:
html
<a id="getYzm" onclick="getYW()">获取验证码</a>
js
var countdown = 10 ;
var getYW=function(){
console.log(countdown);
if(countdown==0){
$('#getYzm').attr('onclick','getYW()');
$('#getYzm').html('获取验证码');
countdown = 10;
return;
}else{
$('#getYzm').html('重新获取'+countdown);
$('#getYzm').attr('onclick',null);
countdown--;
}
setTimeout(function(){
getYW();
},1000);
}
效果图