-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCountPlayer.html
53 lines (49 loc) · 1.92 KB
/
CountPlayer.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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="utf-8">
<!--设置过期时间设置0为直接过期并清除缓存-->
<meta http-equiv="Expires" content="0">
<!--设置不缓存页面-->
<meta http-equiv="Pragma" content="no-cache">
<!--设置不修改消息存储-->
<meta http-equiv="Cache-control" content="no-cache">
<!--同上-->
<meta http-equiv="Cache" content="no-cache">
<style>
ul {
/*list-style: none*/
}
</style>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="assets/css/min.css">
<link rel="stylesheet" href="assets/css/style.css">
<link href="assets/css/goog.css" rel="stylesheet">
<link href="assets/css/icon.css" rel="stylesheet">
<link rel="icon" href="assets/images/PlantsVsZombies.ico" type="images/x-ico" />
<title>Player</title>
<script>
var _hmt = _hmt || [];
(function () {
var hm = document.createElement("script");
hm.src = "https://hm.baidu.com/hm.js?d88a856e26dfdb8ab63efc207e443099";
var s = document.getElementsByTagName("script")[0];
s.parentNode.insertBefore(hm, s);
})();
</script>
</head>
<body style=" background-color:rgb(30,30,30);color:rgb(255,255,255)">
<section>
<h1 style="font-size:1200px;text-align: center">404</h1>
</section>
<script type="text/javascript">
//js后缀加个时间戳每回更新都会改变,浏览器视其为新的js不会进行缓存
document.write('<script type="text/javascript" src="js/test.js?time=' + new Date().getTime() + '"><' + '/' + 'script>');
//css也同上
document.write('<link rel="stylesheet" href="css/test.css?time=' + new Date().getTime() + '"/>');
</script>
</body>
</html>