47fa43898de527c03d24eaa9c0c822ef769af7a6.svn-base
2.63 KB
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
<%@ page language="java" import="java.util.*" pageEncoding="UTF-8" contentType="text/html; charset=UTF-8"%>
<html>
<head>
<title>系统提示</title>
<style type="text/css">
* { font-family: Verdana; font-size: 96%; }
label { width: 10em; float: left; }
label.error { float: none; color: red; padding-left: .5em; vertical-align: top; }
p { clear: both; }
.submit { margin-left: 12em; }
em { font-weight: bold; padding-right: 1em; vertical-align: top; }
.wait {
filter: alpha(opacity = 80);
-moz-opacity: 0.8;
opacity: 0.8;
position: absolute;
width: 100%;
height: 100%;
background: #fff;
text-align: left;
padding-top: 5px;
padding-left: 50px;
}
</style>
<link type="text/css"rel="stylesheet" href="<%=request.getContextPath() %>/css/admin/style.css" />
<link type="text/css" href="<%=request.getContextPath() %>/js/admin/jquery-1.4.2/themes/base/jquery.ui.all.css" rel="stylesheet" />
<script type="text/javascript" src="<%=request.getContextPath() %>/js/admin/jquery-1.4.2/jquery-1.4.2.js"></script>
<script type="text/javascript" src="<%=request.getContextPath() %>/js/admin/jquery-1.4.2/external/jquery.bgiframe-2.1.1.js"></script>
<script type="text/javascript" src="<%=request.getContextPath() %>/js/admin/jquery-1.4.2/ui/jquery.ui.core.js"></script>
<script type="text/javascript" src="<%=request.getContextPath() %>/js/admin/jquery-1.4.2/ui/jquery.ui.widget.js"></script>
<script type="text/javascript" src="<%=request.getContextPath() %>/js/admin/jquery-1.4.2/ui/jquery.ui.mouse.js"></script>
<script type="text/javascript" src="<%=request.getContextPath() %>/js/admin/jquery-1.4.2/ui/jquery.ui.button.js"></script>
<script type="text/javascript" src="<%=request.getContextPath() %>/js/admin/jquery-1.4.2/ui/jquery.ui.draggable.js"></script>
<script type="text/javascript" src="<%=request.getContextPath() %>/js/admin/jquery-1.4.2/ui/jquery.ui.position.js"></script>
<script type="text/javascript" src="<%=request.getContextPath() %>/js/admin/jquery-1.4.2/ui/jquery.ui.resizable.js"></script>
<script type="text/javascript" src="<%=request.getContextPath() %>/js/admin/jquery-1.4.2/ui/jquery.ui.dialog.js"></script>
<script type="text/javascript">
$(function() {
// a workaround for a flaw in the demo system (http://dev.jqueryui.com/ticket/4375), ignore!
$("#dialog").dialog("destroy");
$("#dialog-message").dialog({
modal: true,
buttons: {
返回: function() {
$(this).dialog('close');
history.go(-1);
}
}
});
});
</script>
</head>
<body>
<div id="dialog-message" title="系统提示">
<img src="<%=request.getContextPath() %>/images/admin/wrong.gif" border="0">
${message}
</div>
</body>
</html>