只是好奇,有没有办法在以下代码中获取作为事件处理程序的第一个参数自动传递的'e'值,以便我可以使用bind
button.addEventListener('click', function(e) {
console.log(a + b); //3
console.log(e); //where does e come from and how do i bind it below?
}.bind(null, [e value], 1, 2));
在我想将事件处理程序绑定到预定义参数以在函数内部使用的情况下,这是否可行?