刚才访问OS发现链接错误,然后出现了一个每过5S就重新连接的页面,代码如下

<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE html PUBLIC "-//WAPFORUM//DTD XHTML Mobile 1.0//EN" "http://www.wapforum.org/DTD/xhtml-mobile10.dtd" >
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
    <title>Service Unavailable</title>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
    <script language="javascript">
    	function reload() {document.location.reload();}
		function showtime(){
			var d = new Date();
			document.write((d.getMonth()+1)+"月"+d.getDate()+"日 " + d.getHours()+"点"+d.getMinutes()+"分");			
		}
    	setTimeout("reload()", 5000);
    </script>
	<style>
	body {margin-top:100px;background:#fff;font-family: Verdana, Tahoma;}
    a {color:#CE4614;}
    #msg-box {color: #CE4614; font-size:0.9em;text-align:center;}
    #msg-box .logo {border-bottom:5px solid #ECE5D9;margin-bottom:20px;padding-bottom:10px;}
    #msg-box .title {font-size:1.4em;font-weight:bold;margin:0 0 30px 0;}
    #msg-box .nav {margin-top:20px;}
	</style>
</head>
<body>
  <div id='msg-box'>
	<div class='logo'><a href="/"><img src="/img/logo.gif" border="0"></a></div>
    <!--div class='title'>欢迎浏览我们的网站,系统可能正在更新中,请稍候片刻。</div-->
	<div class='title'>服务器网络故障,我们正在解决....</div>
    <div class='msg'>现在是:<script>showtime();</script>,正在重新连接中...</div>
  </div>
</body>
</html>

你可能感兴趣的:(刚才访问OS发现链接错误,然后出现了一个每过5S就重新连接的页面,代码如下)