123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- <%@ page language="java" contentType="text/html; charset=UTF-8"
- pageEncoding="UTF-8"%>
- <!DOCTYPE html>
- <html>
- <head>
- <meta charset="UTF-8">
- <title>页面出错</title>
- <script language="javascript" type="text/javascript">
- // 以下方式定时跳转
- setTimeout("javascript:location.href='javascript:history.go(-1)'", 5000);
- var wait=5;
- (function time(o) {
- o = wait;
- wait--;
- setTimeout(function() {time(o);}, 1000);
- //document.write(o);
- document.getElementById("num").innerHTML = o;
- })();
- </script>
- <style type="text/css">
- *{ margin: 0;
- padding: 0;
- }
- body{
- background: linear-gradient(to top right, white 0%, skyblue 98%,blue 100%);
- font-family: "宋体";
- height:642px;
- }
- h2{
- color: white;
- margin-left: 20px;
- margin-top: 15px;
- }
- h4{ color: white;
- margin-left: 20px;
- }
- .a{
- height: 20px;
- width: 95%;
- background: linear-gradient(to bottom, white 25%, gray 100%);
- margin-top: 10px;
- margin-left: 20px;
- }
- .b{margin-top: 20px;}
- </style>
- </head>
- <body>
- <h2>
- 深圳信息职业技术学院校运会报名失败
- </h2>
- <h4>
- Shenzhen Vocational and Technical College failed to register for the school sports meeting</h4>
- <div class="a"></div>
- <center class="b">
- <h1>页面出错,请重试</h1>
- <p><span id="num">5</span>秒后返回上一级<p>
- </center>
- </body>
- </html>
|