为了账号安全,请及时绑定邮箱和手机立即绑定

有时间间隔的点击事件

有时间间隔的点击事件

噜噜哒 2018-11-20 17:18:02
$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);


查看完整回答
反对 回复 2018-12-22
  • 1 回答
  • 0 关注
  • 562 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信