7 Star 46 Fork 25

李乐乐/vue-metadata

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
index.html 1.81 KB
一键复制 编辑 原始数据 按行查看 历史
Fan Xiao Long 提交于 2019-06-04 20:18 . 工程初始化
<!DOCTYPE html>
<html>
<head>
<title>LEAP Metadata</title>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,Chrome=1"/>
<link Rel="ICON NAME" href="static/images/favicon.ico"/>
<link rel="shortcut icon" type="image/x-icon" href="/static/images/favicon.ico"/>
<script>
/**
* @return {number}
*/
function IEVersion () {
var userAgent = navigator.userAgent; //取得浏览器的userAgent字符串
var isIE = userAgent.indexOf("compatible") > -1 && userAgent.indexOf("MSIE") > -1; //判断是否IE<11浏览器
var isEdge = userAgent.indexOf("Edge") > -1 && !isIE; //判断是否IE的Edge浏览器
var 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 -1;//不是ie浏览器
}
}
var Num = IEVersion();
if (Num > 6 && Num < 11) {
window.location.href = './static/alert.html';
}
</script>
</head>
<body>
<div id="App"></div>
<!-- built files will be auto injected -->
</body>
</html>
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/sha_ing/vue-metadata.git
git@gitee.com:sha_ing/vue-metadata.git
sha_ing
vue-metadata
vue-metadata
master

搜索帮助