[JQuery]마우스 이벤트[JQuery]마우스 이벤트

Posted at 2014. 1. 8. 00:52 | Posted in IT/JS/jQuery
홈페이제작업체 NuGuWeb
1
2
3
4
5
6
7
8
9
10
11
12
13
$("#div").mousedown(function(event){ 
     // 마우스 버튼 Event
     // 1. event.which=1:마우스 왼쪽 눌렀을때
     // 2. event.which=2:마우스 휠 눌렀을때
     // 3. event.which=3:마우스 오른쪽 눌렀을때
     if(event.which == 1){
      //code 
     }else if (event.which == 2){
      //code
     }else if(event.which == 3){
      //code
     }
}); 
//