cdt-cli
Version:
A simple CLI for creating your projects
86 lines (79 loc) • 2.63 kB
HTML
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width,initial-scale=1.0">
<link rel="icon" href="<%= BASE_URL %>favicon.ico">
<!-- <script type="text/javascript" src="http://webapi.amap.com/maps?v=1.3&key=4ff469fedd056efffdec2d4f22340bd4"></script> -->
<title></title>
<style>
#updateBowser p {
margin-top: 200px;
text-align: center;
font-size: 20px;
line-height: 2em;
}
#updateBowser p a {
color: #409eff;
}
</style>
</head>
<body>
<noscript>
<strong>We're sorry but doesn't work properly without JavaScript enabled. Please enable it to
continue.</strong>
</noscript>
<div id="app"></div>
<div id="updateBowser" style="display: none">
<p>请您使用google浏览器<br>请您切换浏览器,或者点击链接:
<!-- <a href="/downloadChrome/chrome-win-x86-80.zip">下载安装</a> -->
<a href="/downloadChrome/chrome-win-77.exe">浏览器下载(XP)</a>
<a href="/downloadChrome/chrome-win-x86-80.zip">浏览器下载(window7)</a>
</p>
</div>
<!-- built files will be auto injected -->
<script>
window.onload = function () {
let ie = IEVersion();
if (ie <= 8) {
document.getElementById("updateBowser").style.display = "block";
// alert("浏览器版本过低,请升级浏览器")
}
};
// 判断浏览器兼容
function IEVersion() {
let userAgent = navigator.userAgent; //取得浏览器的userAgent字符串
console.log('userAgent', userAgent);
let isIE =
userAgent.indexOf("compatible") > -1 && userAgent.indexOf("MSIE") > -1; //判断是否IE<11浏览器
let isEdge = userAgent.indexOf("Edge") > -1 && !isIE; //判断是否IE的Edge浏览器
let isIE11 =
userAgent.indexOf("Trident") > -1 && userAgent.indexOf("rv:11.0") > -1;
if (isIE) {
var reIE = new RegExp("MSIE (\\d+\\.\\d+);");
reIE.test(userAgent);
var fIEVersion = parseFloat(RegExp["$1"]);
if (fIEVersion == 7) {
return 7;
} else if (fIEVersion == 8) {
return 8;
} else if (fIEVersion == 9) {
return 9;
} else if (fIEVersion == 10) {
return 10;
} else {
return 6; //IE版本<=7
}
} else if (isEdge) {
return "edge"; //edge
} else if (isIE11) {
return 11; //IE11
} else {
return 15; //不是ie浏览器
}
}
</script>
</body>
</html>