美文网首页
LayaBox:限制按钮连续点击

LayaBox:限制按钮连续点击

作者: 一眼就认出你 | 来源:发表于2018-12-05 15:36 被阅读0次

部分代码:

    private _clickTime:number;
    constructor(){
        super();
        this._clickTime=0;
        this.testBtn.on(Laya.Event.CLICK,this,this.eventHandler);
    }

    private eventHandler():void{
         if(Laya.Browser.now() - this._clickTime <= 1000){
              console.log("点击失败");
              return ;
         }
         this._clickTime=Laya.Browser.now() ;
         console.log("点击成功");
    }

注意:new Date().getTime()  也可以获取当前时间的毫秒值

关键代码:

1、Laya.Browser.now() - this._clickTime <= 1000
2、this._clickTime=Laya.Browser.now() ;

解析:
1、一秒内连续点击,return
2、点击成功,将当前浏览器时间赋予this._clickTime,用于下次点击做判断

相关文章

网友评论

      本文标题:LayaBox:限制按钮连续点击

      本文链接:https://www.haomeiwen.com/subject/jzcwcqtx.html