t1.html
1.53 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>layDate快速使用</title>
<!-- <link rel="stylesheet" href="/static/js/layui/css/layui.css" media="all"> -->
</head>
<body onload="test()">
<div class="layui-inline" style="height:600px;width: auto;background-color: aqua;">
<!-- 注意:这一层元素并不是必须的 -->
<!-- <button onclick="test()">浏览器</button> -->
</div>
<!-- <script src="/static/js/layui/layui.js"></script> -->
<script>
function test() {
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 < 9) {
alert("请提升IE版本至IE9及以上!")
} else {
alert("当前版本为IE" + fIEVersion);
}
} else if (isIE11) {
alert("当前版本为IE" + 11);
} else {
alert("请使用IE浏览器打开网页!");
}
}
</script>
</body>
</html>