判断IE10以下提示更换浏览器

Posted lcf0916

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了判断IE10以下提示更换浏览器相关的知识,希望对你有一定的参考价值。

<script>
window.AESKey = ‘‘;
// 判断浏览器是否支持placeholder属性
function isSupportPlaceholder() {
var input = document.createElement(‘input‘);
return ‘placeholder‘ in input;
};
(function() {
//判断是否是IE浏览器,包括Edge浏览器
function IEVersion() {
//取得浏览器的userAgent字符串
var userAgent = navigator.userAgent;
//判断是否IE浏览器
var isIE = userAgent.indexOf("compatible") > -1 && userAgent.indexOf("MSIE") > -1;
if (isIE) {
var reIE = new RegExp("MSIE (\d+\.\d+);");
reIE.test(userAgent);
var fIEVersion = parseFloat(RegExp["$1"]);
if (fIEVersion < 10 || !isSupportPlaceholder()) {
return true;
}
} else {
return false;
}
}
var tpl = [
‘<div class="browser-tips" style="margin:0 auto;text-align: center;">‘,
‘<img style="display: inline-block;margin:100px 0 20px 0;" src="error.png">‘,
‘<p style="font-size: 20px;color:#000;line-height: 32px;">为了给您提供更优质的网页浏览体验,建议使用IE10及以上版本的浏览器</p>‘,
‘<p style="font-size: 20px;color:#000;line-height: 32px;">请升级或更换其他浏览器</p>‘,
‘</div>‘
].join(‘‘);

window.onload = function() {
if (IEVersion()) {
document.write(tpl);
}
};
window.siteName = "跨域";
})();
</script>









































以上是关于判断IE10以下提示更换浏览器的主要内容,如果未能解决你的问题,请参考以下文章

html代码如何实现判断IE是不是为IE7以下的版本,如果是的话强制升级货弹出窗口提示升级,最好能强制升级。

JS如何判断包括IE11在内的IE浏览器

js检测浏览器类型

IE9兼容

IE9兼容

判断ie8以下 或者ie9以下