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

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

你可能感兴趣的:(web前端开发)