类似chrome等可以用全局的事件对象window.Event, Firefox下要怎么解决呢?
难道真的要在事件触发时函数都传递一个 e 然后获取默认的第一个参数 arguments[0]?
大家讲道理2017-04-10 17:27:10
在firefox里,事件对象通过显式或隐式传参得到event事件对象,如下:
element.onclick = function(e){
console.log(e.type);
}
element.onclick = function(){
console.log(arguments[0].type);
}