클릭 또는 더블 클릭 판단

3336 단어 판단
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;
  };

좋은 웹페이지 즐겨찾기