[jQuery1.9]Cannot read property ‘msie’ of undefined错误的解决方法

2023-06-14,,

原文:[jQuery1.9]Cannot read property ‘msie’ of undefined错误解决方法

$.browser在jQuery1.9里被删除了,所以项目的js代码里用到$.browser的地方就会报这个错。

jQuery1.9里对不少API做了废弃或者删除。幸运的是,jQuery社区考虑到了这么做给开发人员带来的麻烦,在1.9同时也推出了一个新插件jQuery Migration,该插件可以检查出在1.9之后被废弃或者删除的API,恢复原有功能,从而保证已有的js代码能在最新的jQuery下正常运行。

下面是具体的解决方法,只需要在jQuery引用后加上一行对jQuery Migration的引用即可。


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

[jQuery1.9]Cannot read property ‘msie’ of undefined错误的解决方法的相关教程结束。

《[jQuery1.9]Cannot read property ‘msie’ of undefined错误的解决方法.doc》

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