博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
获取判断IE版本 TypeError: Cannot read property 'msie' of undefined
阅读量:4937 次
发布时间:2019-06-11

本文共 1950 字,大约阅读时间需要 6 分钟。

注意:以下方法只适用于IE11 以下:

TypeError: Cannot read property 'msie' of undefined  

jquery1.9去掉了 $.browser  所以报错 官方说明 : 

方法 1  大佬的贴:   

/** * Returns the version of Internet Explorer or a -1 * (indicating the use of another browser). */function getInternetExplorerVersion(){    var rv = -1; // Return value assumes failure.    if (navigator.appName == 'Microsoft Internet Explorer')    {        var ua = navigator.userAgent;        var re  = new RegExp("MSIE ([0-9]{1,}[\.0-9]{0,})");        if (re.exec(ua) != null)            rv = parseFloat( RegExp.$1 );    }    return rv;}function checkVersion(){    var msg = "You're not using Internet Explorer.";    var ver = getInternetExplorerVersion();    if ( ver > -1 )    {        if ( ver >= 8.0 )             msg = "You're using a recent copy of Internet Explorer."        else            msg = "You should upgrade your copy of Internet Explorer.";    }    alert( msg );}

方法 2:

// ----------------------------------------------------------// A short snippet for detecting versions of IE in JavaScript// without resorting to user-agent sniffing// ----------------------------------------------------------// If you're not in IE (or IE version is less than 5) then://     ie === undefined// If you're in IE (>=5) then you can determine which version://     ie === 7; // IE7// Thus, to detect IE://     if (ie) {}// And to detect the version://     ie === 6 // IE6//     ie > 7 // IE8, IE9 ...//     ie < 9 // Anything less than IE9// ----------------------------------------------------------// UPDATE: Now using Live NodeList idea from @jdaltonvar ie = (function(){    var undef,        v = 3,        div = document.createElement('div'),        all = div.getElementsByTagName('i');    while (        div.innerHTML = '
', all[0] ); return v > 4 ? v : undef;}());

方法 3

if (navigator.userAgent.toLowerCase().indexOf('msie 6') != -1){

}

6为你要测试的版本号

 

转载于:https://www.cnblogs.com/helloworld6379/p/11180241.html

你可能感兴趣的文章
FlashCS5作成SWC,在Flex4中使用(1)
查看>>
vue-cli目录结构及说明
查看>>
JS 数据类型转换
查看>>
WeQuant交易策略—RSI
查看>>
osgearth将视点绑定到一个节点上
查看>>
PHP 当前时间秒数+数值,然后再转换成时间。
查看>>
数据交互 axios 的使用
查看>>
bootloader,kernel,initrc
查看>>
Java中jshell脚本
查看>>
performSelector的方法
查看>>
redis
查看>>
BZOJ1645 [Usaco2007 Open]City Horizon 城市地平线
查看>>
配置IIS
查看>>
单例模式详解
查看>>
电商项目(下)
查看>>
[NOIP2015] 子串
查看>>
NSSet和NSArray区别与方法总结
查看>>
Python列表 元组 字典 集合
查看>>
foreach遍历数组、数组的转置与方阵的迹
查看>>
Still unable to dial persistent://blog.csdn.net:80 after 3 attempts
查看>>