IE9以下浏览器强制升级js

<script>
    function IETester(userAgent) {
        var UA = userAgent || navigator.userAgent;
        if (/msie/i.test(UA)) {
            return UA.match(/msie (\d+\.\d+)/i)[1];
        } else if (~UA.toLowerCase().indexOf('trident') && ~UA.indexOf('rv')) {
            return UA.match(/rv:(\d+\.\d+)/)[1];
        }
        return false;
    }
    //console.log(IETester()); //不传参数返回当前IE版本,如果不是IE内核浏览器,返回false
    if (IETester() == 9.0) {
        $(".hearder .right").css({
            "position": "absolute",
            "z-index": "-1"
        });
    } else if (IETester() == 8.0 || IETester() == 7.0 || IETester() == 6.0 || IETester() == 5.0) {
        document.write("您的ie版本过低,请升级");
        if (confirm("您的ie版本过低,点击【确定】升级,如不升级您将不能正常浏览网页!")) {
            location.href = "https://support.microsoft.com/zh-cn/help/17621/internet-explorer-downloads";
        } else {
            window.opener=null;
            window.open('','_self');
            window.close();
        }


    }
    IETester('Mozilla/5.0 (Windows NT 6.3; WOW64; Trident/7.0; rv:11.0) like Gecko'); //传userAgent字符串,用来判断其他IE浏览器的版本,该示例返回11.0
</script>
  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值