shSuccess.jsp
1.01 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
<%@ page contentType="text/html;charset=UTF-8" %>
<%@ include file="/WEB-INF/views/include/taglib.jsp"%>
<html>
<head>
<title>图片管理</title>
<meta name="decorator" content="default"/>
<link href="${ctxStatic}/gis/lib/layer.css" type="text/css" rel="stylesheet" />
<script src="${ctxStatic}/gis/lib/layer.js" type="text/javascript"></script>
<style>
.htfj{
position: absolute;
top: 50%;
left: 50%;
height: 200px; margin-top: -100px;
width: 400px; margin-left: -200px;
}
</style>
<script type="text/javascript">
$(document).ready(function() {
var fjs = '${tpfj}';
var varpath = window.location.origin;
var zurl="D:/file/"+url;
var index = layer.open({
type: 2,
//content:zurl,
content: url,
area: ['320px', '195px'],
maxmin: true
});
window.parent.parent.parent.layer.full(index);
})
</script>
</head>
<body>
<div id="htfj" class="htfj"></div>
</body>
</html>