码迷,mamicode.com
首页 > Windows程序 > 详细

火狐下window.event获取undefined问题

时间:2017-03-21 17:36:41      阅读:249      评论:0      收藏:0      [点我收藏+]

标签: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});

火狐下window.event获取undefined问题

标签:cti   callee   浏览器   nts   window   function   fine   var   操作   

原文地址:http://www.cnblogs.com/lr-blog/p/6595621.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!