我想做一个eventHandler
传递事件和一些参数的。问题是该函数没有获取元素。这是一个例子:
doClick = function(func){
var elem = .. // the element where it is all about
elem.onclick = function(e){
func(e, elem);
}
}
doClick(function(e, element){
// do stuff with element and the event
});
elem
必须在匿名函数之外定义。如何让传递的元素在匿名函数中使用?有没有办法做到这一点?
那么addEventListener
呢?我似乎根本无法通过事件传递addEventListener
我吗?
更新
我似乎用“这个”解决了这个问题
doClick = function(func){
var that = this;
this.element.onclick = function(e){
func(e, that);
}
}
其中包含this.element
我可以在函数中访问的内容。
addEventListener
但我想知道addEventListener
:
function doClick(elem, func){
element.addEventListener('click', func(event, elem), false);
}