123456789101112131415161718192021222324252627282930313233 |
- <%@ page language="java" contentType="text/html; charset=utf-8"
- pageEncoding="utf-8" isErrorPage="true"%>
- <html lang="en">
- <head>
- <meta charset="utf-8">
- <style>
- body{margin: 0;}
- img{
- cursor: pointer;
- }
- </style>
- <!-- jQuery -->
- <script src="${pageContext.request.contextPath}/static/js/jquery-1.11.1.js"></script>
- <script type="text/javascript">
- function iFrameHeight(){
- $(window.parent.document).find("#iframepage").load(function(){
- var main = $(window.parent.document).find("#iframepage");
- var thisheight = $(document).height();
- main.height(thisheight);
- });
- }
-
- function backToIndex(){
- window.parent.location.href="${pageContext.request.contextPath}/main";
- }
- </script>
- <title>500-服务器异常</title>
- </head>
- <body onload="iFrameHeight()">
- <img onclick="backToIndex()" style="display: block;position: absolute;left: 50%;margin-top: -250px;top: 50%; margin-left: -318px;" src="${pageContext.request.contextPath}/static/biz/image/500.jpg"/>
- </body>
- </html>
|