当使用js的严格模式时,在火狐中获取触发绑定事件的event属性出现问题,
'caller', 'callee', and 'arguments' properties may not be accessed on strict mode functions or the arguments objects for calls to them
但在非严格模式中可以使用
var event = arguments.callee.caller.arguments[0]
来获取event属性,有没有办法在严格模式下获取event属性?
相关分类