Управление DOM с помощью JavaScript в современных браузерах и IE 11+
Как узанать в обработчиках событий mousedown
и mouseup
, какая кнопка мыши нажата:
ele.addEventListener('mousedown', function(e) {
// e.button === 0: the left button is clicked
// e.button === 1: the middle button is clicked
// e.button === 2: the right button is clicked
// e.button === 3: the `Browser Back` button is clicked
// e.button === 4: the `Browser Forward` button is clicked
});