Pass multiple arguments along with an event object to an event handler
问题 How can one pass multiple arguments along with an event object to an event handler without using Function.prototype.bind ? The event handler has a closure in it. The below basic code won't work, element.addEventListener("click", eventHandler(eventObj + arguments), false); function eventHandler(eventObj + arguments) { return function(){}; //a closure } I don't know how to pass event object and other arguments at the same time to an event handler. Updated: I have even tried using anonymous