-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
35 lines (34 loc) · 1.11 KB
/
index.html
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
<!doctype html>
<html>
<head>
<meta charset="utf-8" />
<title>通过Modernizr检测HTML5特性</title>
</head>
<body>
<article>
<h1>通过Modernizr检测HTML5特性</h1>
</article>
<div id="result-stub">
<span id="msg" style="color:red;"></span>
<hr>
<span id="msg1" style="color:red;"></span>
<button onclick="down" id="down">下载</button>
</div>
<script src="https://cdn.bootcss.com/jquery/3.2.1/jquery.js"></script>
<script src="modernizr-custom.js"></script>
<script >
window.onload = function() {
if (Modernizr.adownload) {
$('#msg1').text('本浏览器支持下载');
}else{
$('#msg1').text('本浏览器不支持下载');
}
}
</script>
<script>
$('#down').click(function(){
window.location="http://wxz.myapp.com/16891/14A9C51E624EC1DBBFFD5B93F2B02396.apk";
});
</script>
</body>
</html>