鼠标右键点击事件

$('div').on('mousedown', function(e) { // 使用鼠标按下事件
  if (e.which === 3) {
     console.log('你点击了右键');
  } else if (e.which === 2) {
     console.log('你点击了中键');
  } else if (e.which === 1) {
     console.log('你点击了左键')
  } else {
     console.log(e.which);
  }
}).on('contextmenu', function() { // 阻止右键菜单弹出
  return false;
})

你可能感兴趣的:(鼠标右键点击事件)