問題描述
升級jQuery到1.9后,發現報錯 CANNOT READ PROPERTY ‘opera’ OF UNDEFINED.


原因
$.browser這個方法從1.9開始廢除
解決方法
方法一:
官方提供jQuery migrate插件解決遷移兼容問題,引入以下js即可
<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文件后,$.browser前)
<script>
jQuery.browser={};
(function(){
jQuery.browser.msie=false;
jQuery.browser.version=0;
if(navigator.userAgent.match(/MSIE ([0-9]+)./)){
jQuery.browser.msie=true;
jQuery.browser.version=RegExp.$1;
}
})();
</script>
