我们都习惯直接使用event变量来js函数中直接访问window.event对象,chrome浏览器支持,IE应该也支持,未测试。但是这个特性在firefox中没有得到支持,必须才使用函数时传递evt参数。
如
function myfunc(evt) { alert(evt.type); }
但是,为了适配浏览器分别写两个函数,一个使用直接使用event,而另一个则传递evt参数则显麻烦。
其实不用担心这么写,在开头加两行代码即可。
function myfunc(evt) { if(event)//chrome及IE {}//Do nothing else event=evt;//firefox; //然后就可以直接使用event变量了 alert(event.type); }
转载于:https://www.cnblogs.com/richard-g/archive/2012/09/15/3589572.html