jquery错误: Cannot read property ‘msie’ of undefined

2023-05-25,,

背景

Web application, 引用了jquery 1.10.2和fancybox 1.3.4

现象

访问页面遭遇Cannot read property ‘msie’ of undefined的报错

原因

fancybox尝试使用$.browser, 但$.browser从jQuery1.9开始就正式废除,因此报错

解决办法

下载jquery-migrate-1.2.2,在引用jquery库之后引用jquery-migrate,错误解决

<script src="http://code.jquery.com/jquery-1.10.2.js"></script>
<script src="http://code.jquery.com/jquery-migrate-1.2.1.js"></script>

jquery错误: Cannot read property ‘msie’ of undefined的相关教程结束。

《jquery错误: Cannot read property ‘msie’ of undefined.doc》

下载本文的Word格式文档,以方便收藏与打印。