解决jQuery新旧版本差异的代码

  在网上下载了日期插件,jQuery版本是1.8.3,换上新版jQuery之后,报错 Cannot read property 'msie' of undefined 。在网上寻了一些解决方案,个人更喜欢在jQuery之后加载这段js。这是jQuery1.9.0版本之后扩展使用$.browser方法。

  写在这里,方便以后用到。

  (不知道这段js出自何处,仅供自己学习使用)

  

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;}})();
原文地址:https://www.cnblogs.com/AliceLiu/p/7649327.html