怎样获取带参数事件的 event 对象
怎么样才能获取带参数事件的event对象啊
function fun(a){
var e=window.event;//firefox 怎么办啊
}
我这个函数一定要两个参数,怎样函数的默认参数event 就取不到了
------解决方案--------------------function fun(a,event){
..............
}
调用时 <input type="text" onfocus="fun('aa',event)"> 这样调用就可以啊
------解决方案--------------------
<script type='text/javascript'>
function f( arg ) {
var e = f.caller.arguments[0]
------解决方案--------------------
window.event;
alert(e)
}
</script>
<input onclick="f( '111' )" type="button" id="btn" />