鼠标右键点击事件
Posted Dear 丶Lord
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了鼠标右键点击事件相关的知识,希望对你有一定的参考价值。
$(function(){
$(‘a‘).mousedown(function(e){
alert(e.which) // 1 = 鼠标左键 left; 2 = 鼠标中键; 3 = 鼠标右键
return false;//阻止链接跳转
})
})
如
$(‘#downwps2010‘).mousedown(function(e){
if(3 == e.which){
alert(‘这 是右键单击事件‘);
}else if(1 == e.which){
alert(‘这 是左键单击事件‘);
}
})
以上是关于鼠标右键点击事件的主要内容,如果未能解决你的问题,请参考以下文章