JQuery's method of checking the left mouse button and right-click
This article mainly introduces jQuery's method of detecting the left mouse button and right-click, involving jQuery's tips for operating mouse events, and has good compatibility with IE browsers. For more information, see
This example describes how jQuery checks the left mouse button and right-click button. Share it with you for your reference. The specific analysis is as follows:
This Code uses jQuery to check the left mouse button and right-click button. You can determine whether the user has clicked the left mouse button or right mouse button. The abnormal IE situation is considered and you can use it with confidence.
The Code is as follows:
$ ("# Someelement"). live ('click', function (e ){
If ((! $. Browser. msie & e. button = 0) | ($. browser. msie & e. button = 1 ))
{
Alert ("Left Mouse Button Clicked, http://www.jb51.net ");
} Else if (e. button = 2 ){
Alert ("Right Mouse Button Clicked, http://www.jb51.net ");
}
});
I hope this article will help you with jQuery programming.