判断是否ie10及以下

  var userAgent = navigator.userAgent; //取得浏览器的userAgent字符串  
        var isIE = userAgent.indexOf('compatible') > -1 && userAgent.indexOf('MSIE') > -1; //判断是否IE<11浏览器  
        if (isIE) {
            var str1 = '你的ie浏览器版本不能低于11';
            var str2 = '推荐使用:谷歌,' +
                '火狐或其他双核极速模式';
            document.writeln("
" +
                "

" + str1 + "

" + str2 + "

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

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

你可能感兴趣的:(判断是否ie10及以下)