注:1为鼠标左键、2为鼠标中键、3为鼠标右键
$('#btn').mousedown(function(e){ if(3 == e.which){ alert('右键单击事件'); }else if(1 == e.which){ alert('左键单击事件'); } })本文共 188 字,大约阅读时间需要 1 分钟。
注:1为鼠标左键、2为鼠标中键、3为鼠标右键
$('#btn').mousedown(function(e){ if(3 == e.which){ alert('右键单击事件'); }else if(1 == e.which){ alert('左键单击事件'); } })转载于:https://www.cnblogs.com/lilelile/p/7505264.html