Angular框架专题

Angular框架中解决鼠标同一个DOM元素作用单击和双击事件未

2022-01-18  本文已影响0人  听书先生
  handleOpen(x,y) {
    const that = this;
    if(!this.isSingle){
      this.isSingle=true;
      this.timer = setTimeout(function () {
        // 这里写你的代码逻辑
        that.isSingle = false;
      },1)
    }
  }

  handleSelect(x,y) {
    // 这里写你的代码逻辑
    this.isSingle = false;
    clearTimeout(this.timer); // 清除定时器
  }
上一篇下一篇

猜你喜欢

热点阅读