error.jsp 933 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. <%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%>
  2. <html>
  3. <head>
  4. <%@ include file="header.jspf" %>
  5. </head>
  6. <body>
  7. <div class="container">
  8. <%@ include file="head.jsp" %>
  9. <div class="row" style="margin-top: 70px ">
  10. <div class="jumbotron">
  11. <h2>${msg}</h2>
  12. <br>
  13. <center ><p id="cnt" style="color: red">5秒后返回主页...</p> <p><a class="btn btn-primary" onclick="history.go(-1);">点我立即返回</a></p></center>
  14. </div>
  15. </div>
  16. </div>
  17. <script type="text/javascript">
  18. var cnt = 5;
  19. function count(){
  20. cnt--;
  21. if(cnt>0){
  22. $("#cnt").html(cnt+"秒后返回");
  23. }else{
  24. window.history.go(-1);
  25. }
  26. };
  27. $(function(){
  28. //setTimeout("'", 3000);
  29. setInterval('count()', 1000);
  30. });
  31. </script>
  32. <%@ include file="buttom.jsp" %>
  33. </body>
  34. </html>