码迷,mamicode.com
首页 > 其他好文 > 详细

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

时间:2018-09-05 12:52:35      阅读:520      评论:0      收藏:0      [点我收藏+]

标签:lin   win   row   字符串   block   跨域   site   line   document   

<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以下提示更换浏览器

标签:lin   win   row   字符串   block   跨域   site   line   document   

原文地址:https://www.cnblogs.com/lcf0916/p/9591389.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!