IE浏览器中可以直接用 window.event或event获得event对象(建议最后是用window.event 这样可防止在作用域发生问题)
DOM标准的浏览器中不能直接使用window.event和 event对象,系统把event对像以函数参数方式传给触发事件的调用函数。第一个参数就是event对像
如:
document.οnclick=function(evt){
alert(evt)//evt 就是传回来event对像
}
兼容获取event对像的简单写法
document.οnclick=function(evt){
evt = evt||window.event;//兼容获取event对像的简单写法
alert(evt);
}
下面提供同时兼容IE和Firefox的获得event对象的方法,在需要用到event对象的地方,调用该方法即可.
function getEvent() //同时兼容ie和ff的写法
{
if(document.all) return window.event;
func=getEvent.caller;
while(func!=null){
var arg0=func.arguments[0];
if(arg0)
{
if((arg0.constructor==Event || arg0.constructor ==MouseEvent) || (typeof(arg0)=="object" && arg0.preventDefault && arg0.stopPropagation))
{
return arg0;
}
}
func=func.caller;
}
return null;
}
//如调用:
document.οnclick=function(){
var evt=getEvent();
alert(evt);
}