content.html
2.03 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
45
46
47
48
<!DOCTYPE html>
<html lang="en">
<head>
<script async src="https://www.googletagmanager.com/gtag/js?id=G-QT401FZZ2K"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-QT401FZZ2K');
</script>
<meta charset="UTF-8">
<link rel="stylesheet" href="css/base.css">
<style>
*{margin: 0px; padding:0px; font-family:"微软雅黑";font-size:16px;}
a {text-decoration: none; color: #1064A0;}
h1,h2 {margin:0;font-weight:normal; font-family: "微软雅黑" ; }
.errorpPage-box h1{font-size:44px; color:#0188DE; padding:20px 0px 10px;}
.errorpPage-box h2{color:#0188DE; font-size:16px; padding:10px 0px 40px;}
.errorpPage-box p{color:#666;}
.errorpPage-box{width:910px; padding:20px 20px 40px; margin-top:80px;border-style:dashed;border-color:#e4e4e4;line-height:30px;margin-left:auto; margin-right:auto;}
.errorpPage-operate .operateBtn{width:180px; height:28px; margin-left:0px; margin-top:10px; background:#009CFF; border-bottom:4px solid #0188DE; text-align:center;display:inline-block;font-size:14px; color:#fff; }
.errorpPage-operate .operateBtn:hover{ background:#5BBFFF;}
</style>
</head>
<body>
<div class="errorpPage-box">
<h1>对不起!发生了一些意想不到的错误。</h1>
<h2>Sorry, the site now can not be accessed. </h2>
<p id="userIp"></p>
<p>请联系系统管理员进行处理,我们会尽快修复。您可以:</p>
<div class="errorpPage-operate">
<a href="javascript:history.back(-1);" class="operateBtn" title="刷新试试">刷新试试</a>
<a href="http://www.baidu.com" class="operateBtn" title="返回首页">返回首页</a>
</div>
</div>
<script>
var userIp = window.location.search.split('?ip=')[1]
console.log(window.location)
if(userIp){
var dom = document.getElementById('userIp')
dom.innerHTML = "您当前的ip是" + userIp
}
</script>
</body>
</html>