Adds multiple event listeners with the same handler to an element.
- Use
Array.prototype.forEach()
andEventTarget.addEventListener()
to add multiple event listeners with an assigned callback function to an element.
代码实现
const addMultipleListeners = (el, types, listener, options, useCapture) => {
types.forEach(type =>
el.addEventListener(type, listener, options, useCapture)
);
};
addMultipleListeners(
document.querySelector('.my-element'),
['click', 'mousedown'],
() => { console.log('hello!') }
);
翻译自:https://www.30secondsofcode.org/js/s/add-multiple-event-listeners