有bug,谁帮我看下
这是我的js代码,不知为何点击按钮可以执行一次,接着就执行不了了,还有就是点击按钮,然后为什么倒计时会延迟一会才开始计时的?球解答
function play(){
var send = document.getElementById('send');
timer = null;
times = 60;
send.onclick = function(){
alert('已下发短信到您的手机,请注意查收');
timer = setInterval(function(){
if(times<=0){
send.value = "发送验证码";
send.removeAttribute('disabled');
clearInterval('timer');
}else{
times--;
send.value = times +'秒后重试';
send.disabled = true;
}
},1000)
}
}