Is right click a Javascript event?

后端 未结 18 2439
南笙
南笙 2020-11-22 10:02

Is right click a Javascript event? If so, how do I use it?

18条回答
  •  生来不讨喜
    2020-11-22 10:40

    have a look at the following jQuery code:

    $("#myId").mousedown(function(ev){
          if(ev.which == 3)
          {
                alert("Right mouse button clicked on element with id myId");
          }
    });
    

    The value of which will be:

    • 1 for the left button
    • 2 for the middle button
    • 3 for the right button

提交回复
热议问题