Blame view

WebRoot/WEB-INF/jsp/save_result2.jsp 1.01 KB
6429ab88   孙向锦   remove
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
  <%@ 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>
a2414076   孙向锦   修改谢曲提交过来的bug
21
  	<div id="zhongxin">${msg}</div>
6429ab88   孙向锦   remove
22
23
24
25
26
27
  	<script type="text/javascript">
  		var msg = "${msg}";
  		if(msg=="success" || msg==""){
  			document.getElementById('zhongxin').style.display = 'none';
  			window.top.modal.remove();
  		}else{
a2414076   孙向锦   修改谢曲提交过来的bug
28
  		//	window.top.modal.remove();
6429ab88   孙向锦   remove
29
30
31
32
  		}
  	</script>
  </body>
  </html>