标签:cti callee 浏览器 nts window function fine var 操作
火狐下用window.event来进行相应操作时,会显示undefined,其他浏览器可以,
解决方法:
1,传入对象
$("a").on("click",function(e){var event = e || window.event});
2,不传入对象
$("a").on("click",function(){var event = arguments.callee.caller.arguments[0] || window.event});
标签:cti callee 浏览器 nts window function fine var 操作
原文地址:http://www.cnblogs.com/lr-blog/p/6595621.html