火狐和IE的window.event的区别_百度知道
最佳答案: IE 中可以直接使用 window.event 对象,而 FF 中则不可以,解决方法之一如下: var theEvent = window.event || arguments.callee.caller.arguments[0]...更多关于火狐下如何模仿 IE下的window.event(前提不能由外部传入)的问题>>
火狐和IE的window.event的使用区别
2014年1月2日 - 火狐下的e.target相当于ie下的event.srcElement,表示产生事件的源。 例子:document.onclick = function(e){var theEvent = window.event || e;var src...