err_mobile.html
1.6 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
49
50
51
52
53
<!DOCTYPE >
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>友情提示</title>
<meta name="viewport" content="initial-scale=1.0, maximum-scale=1.0, user-scalable=0" />
<meta name="format-detection" content="telephone=no" />
<meta name="format-detection" content="email=no" />
<meta name="format-detection" content="address=no;">
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="default" />
<style>
body{
margin: 0;
padding: 0;
font-family: "Microsoft Yahei";
}
.fontbig{ font-size:30px; color:#6F4C2D; line-height:50px;}
.fontts{ font-size:14px; color:#A4A4A4; line-height:30px;}
.errImg{width: 100%;}
.info{position: absolute;left: 32%;width:60%;height: 200px;overflow: auto;}
.info p{margin: 5px 0;}
.info_tit{font-size: 18px;color: #0164a8;}
.info_text{font-size: 14px;color: #3f3b3a;}
</style>
<script src="/public/js/global.js"></script>
<script src="/public/js/jquery-1.8.2.min.js"></script>
<script type="text/javascript">
$(function(){
var h=$(".errImg").height();
$(".info").css("top",h*0.32);
});
</script>
</head>
<body>
<div class="info">
<p class="info_tit">非法操作…</p>
<p class="info_text">亲爱的用户,您非法操作,导致无法访问!</p>
</div>
<img class="errImg" src="/public/images/err_m.jpg" />
</body>
</html>
<script>
var getmsg="您未登录,无法操作!";
if (getQueryString("msg")!=null && getQueryString("msg")!="")
{
getmsg=getQueryString("msg");
}
// alert(getmsg)
$(".fontbig").html(getmsg);
</script>