// 鼠标划过整个容器时停止自动播放
wrap.onmouseover=function(){
clearInterval(timer);
}
// 鼠标离开整个容器时继续播放至下一张
wrap.onmouseout=function(){
timer=setInterval(autoPlay,times);
}
wrap.onmouseover=function(){
clearInterval(timer);
}
// 鼠标离开整个容器时继续播放至下一张
wrap.onmouseout=function(){
timer=setInterval(autoPlay,times);
}
2017-04-28
send.onclick=function(){
send.disabled='disabled';
send.value=times+'秒后重试';
timer=setInterval(function(){
if(--times!=0)
send.value=(times)+'秒后重试';
else{
send.value='发送验证码';
send.disabled='';
times=5;
clearInterval(timer);
}
},1000)
send.disabled='disabled';
send.value=times+'秒后重试';
timer=setInterval(function(){
if(--times!=0)
send.value=(times)+'秒后重试';
else{
send.value='发送验证码';
send.disabled='';
times=5;
clearInterval(timer);
}
},1000)
最新回答 / you_belong_to_me
function $(id){ return typeof id==='string'?document.getElementsById(id):id; }$ 函数名。id 参数如果传入的id是字符串类型的。返回 document.getElementById(id)
2017-04-25
最新回答 / 慕斯8234454
定义标签id 不能用数字开头,但js 理获取循环的标签id 只是代表数组(标签有很多个,所以才要循环)中的第几个,并不是HTML 中代表标签的id
2017-04-12
function autochange(){ times--; if(times==0){
send.value="发送验证码";
send.style.color="black";
clearInterval(timer); send.disabled=false;
}else{send.value=times+"秒后重试"; } } } }
send.value="发送验证码";
send.style.color="black";
clearInterval(timer); send.disabled=false;
}else{send.value=times+"秒后重试"; } } } }