我对以下示例有两个问题:
function doIt(){
this.attribute = someValue; // Works as expected
alert(event.which); // Doesn't work
}
element.addEventListener("click",doIt,false);
问题1:为什么this
与函数绑定但event
不是?
问题2:这样做的适当方法是什么?
答案 0 :(得分:4)
this
是JavaScript的内置功能。它总是可以访问。 event
不是。它仅在当前方法支持时才可用。
你需要像
这样的东西function doIt(event)
什么是this
? - http://howtonode.org/what-is-this