`
rockyuse
  • 浏览: 191838 次
  • 性别: Icon_minigender_1
  • 来自: 成都
社区版块
存档分类
最新评论

判断单击还是双击

 
阅读更多

document.getElementById("google").onclick = function(){
      var link = this.href;
      if(this.clickTimeout){
          // 双击
          clearTimeout(this.clickTimeout);
          this.clickTimeout = null;
          alert(link);
      }
      else{
          // 单击
          var elem = this;
          this.clickTimeout = setTimeout(function(){
              // 跳转到相应网址
              elem.clickTimeout = null;
              window.location.href = link;
          }, 250);
      }
      //阻止链接onclick时的默认行为
      return false;
  };
分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics