error.jsp 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. <%@ page language="java" contentType="text/html; charset=UTF-8"
  2. pageEncoding="UTF-8"%>
  3. <!DOCTYPE html>
  4. <html>
  5. <head>
  6. <meta charset="UTF-8">
  7. <title>页面出错</title>
  8. <script language="javascript" type="text/javascript">
  9. // 以下方式定时跳转
  10. setTimeout("javascript:location.href='javascript:history.go(-1)'", 5000);
  11. var wait=5;
  12. (function time(o) {
  13. o = wait;
  14. wait--;
  15. setTimeout(function() {time(o);}, 1000);
  16. //document.write(o);
  17. document.getElementById("num").innerHTML = o;
  18. })();
  19. </script>
  20. <style type="text/css">
  21. *{ margin: 0;
  22. padding: 0;
  23. }
  24. body{
  25. background: linear-gradient(to top right, white 0%, skyblue 98%,blue 100%);
  26. font-family: "宋体";
  27. height:642px;
  28. }
  29. h2{
  30. color: white;
  31. margin-left: 20px;
  32. margin-top: 15px;
  33. }
  34. h4{ color: white;
  35. margin-left: 20px;
  36. }
  37. .a{
  38. height: 20px;
  39. width: 95%;
  40. background: linear-gradient(to bottom, white 25%, gray 100%);
  41. margin-top: 10px;
  42. margin-left: 20px;
  43. }
  44. .b{margin-top: 20px;}
  45. </style>
  46. </head>
  47. <body>
  48. <h2>
  49. 深圳信息职业技术学院校运会报名失败
  50. </h2>
  51. <h4>
  52. Shenzhen Vocational and Technical College failed to register for the school sports meeting</h4>
  53. <div class="a"></div>
  54. <center class="b">
  55. <h1>页面出错,请重试</h1>
  56. <p><span id="num">5</span>秒后返回上一级<p>
  57. </center>
  58. </body>
  59. </html>