$next.on('click',function(){ //清除定时器 clearInterval(t); //执行一次下一张轮播图的播放 setTimeout(next); //执行一次下一张轮播图的播放后执行轮播 setTimeout(t=window.setInterval( next, delay ),delay); });如何给这个点击事件加上一个限制,要等5秒之后才能点击
1 回答
慕斯王
TA贡献1864条经验 获得超2个赞
var overtime = true;
$next.on("click",function(){
if(!overtime){
return;
}
console.log("click success");
overtime = false;
});
var catchTimer = setInterval(function(){
overtime = true;
},5000);
添加回答
举报
0/150
提交
取消