javascript - 跪求大神:js如何检测是不是IE8
伊谢尔伦
伊谢尔伦 2017-04-11 11:24:48
0
5
301

用navigator.userAgent找MSIE 8.0 但用IE仿真一直是MSIE 9.0

伊谢尔伦
伊谢尔伦

小伙看你根骨奇佳,潜力无限,来学PHP伐。

全部回覆 (5)
洪涛
function checkBrower() { var Sys = {}; var ua = navigator.userAgent.toLowerCase(); if (window.ActiveXObject) { Sys.ie = ua.match(/msie ([\d.]+)/)[1]; //获取版本 var ie_version = 6; if (Sys.ie.indexOf("7") > -1) { ie_version = 7; } if (Sys.ie.indexOf("8") > -1) { ie_version = 8; } if (Sys.ie.indexOf("9") > -1) { ie_version = 9; } if (Sys.ie.indexOf("10") > -1) { ie_version = 10; } if (Sys.ie.indexOf("11") > -1) { ie_version = 11; } } else if (ua.indexOf("firefox") > -1) Sys.firefox = ua.match(/firefox\/([\d.]+)/)[1]; else if (ua.indexOf("chrome") > -1) Sys.chrome = ua.match(/chrome\/([\d.]+)/)[1]; else if (window.opera) Sys.opera = ua.match(/opera.([\d.]+)/)[1]; else if (window.openDatabase) Sys.safari = ua.match(/version\/([\d.]+)/)[1]; }
    大家讲道理
    if (navigator.appName === 'Microsoft Internet Explorer') { //判断是否是IE浏览器 if (navigator.userAgent.match(/Trident/i) && navigator.userAgent.match(/MSIE 8.0/i)) { //判断浏览器内核是否为Trident内核IE8.0 console.info('IE8'); } }
      小葫芦
      var browser=navigator.appName var b_version=navigator.appVersion var version=b_version.split(";"); var trim_Version=version[1].replace(/[ ]/g,""); if((browser=="Microsoft Internet Explorer" && trim_Version=="MSIE8.0")){ alert("IE8"); }
        大家讲道理
        var isIE = function(ver){ var b = document.createElement('b') b.innerHTML = '' return b.getElementsByTagName('i').length === 1 } if(isIE(6)){ // IE 6 //alert("现在是IE6的浏览器!"); } // ... if(isIE(9)){ // IE 9 //alert("现在是IE9的浏览器!"); } var ie = isIE() document.write('ie6:' + isIE(6) + '
        ' + 'ie7:' + isIE(7) + '
        ' + 'ie8:' + isIE(8) + '
        ' + 'ie9:' + isIE(9) + '
        ' + 'ie10:' + isIE(10) + '
        ' + 'ie11:' + isIE(11) + '
        '+ 'ie:' + isIE())
          大家讲道理
          if(document.querySelector && !window.addEventListener){ alert('IE8') }
            最新下載
            更多>
            網站特效
            網站源碼
            網站素材
            前端模板
            關於我們 免責聲明 Sitemap
            PHP中文網:公益線上PHP培訓,幫助PHP學習者快速成長!