[jQuery] Cannot read property ‘msie’ of undefined錯誤的解決方法


  使用ztree時候沒有用默認的1.4版本jquery,報錯Cannot read property ‘msie’ of undefined

  $.browser這個api從jQuery1.9開始就正式廢除,js代碼用到$.browser就會報這個錯。詳細說明參見官方說明

  

 

  解決方法加入下面代碼,jQuery文件加載之后,使用$.browser的代碼之前。

  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;}})();

 


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM