鼠标右键点击事件
2018-01-18 本文已影响0人
一杯柠檬可乐
$('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;
})