<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>
IE9以下浏览器强制升级js
最新推荐文章于 2023-01-06 14:20:13 发布