日期:2014-05-16 浏览次数:20342 次
function test(oEvent){ if(!oEvent) oEvent = window.event; }
------解决方案--------------------
<input type="button" id="btn" name="btn" value="test" onclick="test(event,1,2)" />
function test(evt,arg1,arg2){ //Firefox下,在这怎么获取Event对象.
}
evt参数便是event对象.