Blame view

WebRoot/WEB-INF/jsp/save_result.jsp 1015 Bytes
ad5081d3   孙向锦   初始化项目
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
  <%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
  <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%>
  <%@ taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt"%>
  <%
  	String path = request.getContextPath();
  	String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
  %>
  <!DOCTYPE html>
  <html lang="en">
  <head>
  <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
  <title>保存结果</title>
  <base href="<%=basePath%>">
  <meta name="description" content="overview & stats" />
  <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  
  <script type="text/javascript" src="static/js/jquery-1.7.2.js"></script>
  
  </head>
  <body>
  	<div id="zhongxin"></div>
  	<script type="text/javascript">
  		var msg = "${msg}";
  		if(msg=="success" || msg==""){
  			document.getElementById('zhongxin').style.display = 'none';
  			top.Dialog.close();
  		}else{
  			top.Dialog.close();
  		}
  	</script>
  </body>
  </html>