Jquery: detect if middle or right mouse button is clicked, if so, do this:

前端 未结 3 464
终归单人心
终归单人心 2020-11-30 10:39

Check out my jsfiddle demo, if e.which == 1 then when you left click the h2 it will e.which == 2 or e.which == 3 then it wont work. 2

3条回答
  •  一整个雨季
    2020-11-30 11:07

    You may want to trap the mousedown event, and you also need to prevent the oncontextmenu event to stop the context menu from coming up during the right click event.

    $("h2").live('mousedown', function(e) { 
       if( (e.which == 1) ) {
         alert("left button");
       }if( (e.which == 3) ) {
         alert("right button");
       }else if( (e.which == 2) ) {
          alert("middle button"); 
       }
       e.preventDefault();
    }).live('contextmenu', function(e){
       e.preventDefault();
    });
    

    UPDATE: .live() has been deprecated since jQuery 1.9. Use .on() instead.

    $("h2").on('mousedown', function(e) { 
      if (e.which == 1) {
        alert("left button");
      } else if (e.which == 3) {
        alert("right button");
      } else if (e.which == 2) {
        alert("middle button");
      }
      e.preventDefault();
    });
    

提交回复
热议问题