判断兼容IE8浏览器判断语句

判断浏览器版本是否ie8以下浏览器,如果是调到提示换更高级版本浏览器页面

(function(window) {
    var theUA = window.navigator.userAgent.toLowerCase();
    if ((theUA.match(/msie\s\d+/) && theUA.match(/msie\s\d+/)[0]) || (theUA.match(/trident\s?\d+/) && theUA.match(/trident\s?\d+/)[0])) {
        var ieVersion = theUA.match(/msie\s\d+/)[0].match(/\d+/)[0] || theUA.match(/trident\s?\d+/)[0];
        if (ieVersion < 9) {
            var str = "你的浏览器版本太low了\n已经和时代脱轨了 :(";
            var str2 = "推荐使用:谷歌,"
            + "火狐,"
            + "猎豹,其他双核急速模式";
            document.writeln("
" + 
            "

" + str + "

" + str2 + "

如果你的使用的是双核浏览器,请切换到极速模式访问

"); document.execCommand("Stop"); }; } })(window);

html用条件注释判断浏览器版本解决页面兼容问题

(1)、IE9浏览器 

 

(2)、IE8浏览器 

 

(3)、IE7浏览器 

 

(4、IE6浏览器 

 

(5)、IE10以下版本浏览器(不包括IE10) 

 

(6)、IE9及IE9以下版本浏览器(包括IE9) 


你可能感兴趣的:(判断兼容IE8浏览器判断语句)