err_mobile.html 1.6 KB
<!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>