ERP-node/WebContent/WEB-INF/view/partMng/structureBtnAreaPopup.jsp

29 lines
794 B
Plaintext

<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
<%@ page import="com.pms.common.utils.*"%>
<%@ page import="java.util.*" %>
<%@include file= "/init.jsp" %>
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title><%=Constants.SYSTEM_NAME%></title>
<script>
$(function(){
$("#btnClose").click(function(){
top.opener.fn_search();
top.window.close(0);
//top.opener.document.location.reload();
});
});
</script>
</head>
<body class="backcolor">
<form name="form1" action="" method="post">
<div class="btnCenterWrap">
<center class="center_btns_wrap" style="top:15px;">
<input type="button" value="닫기" class="plm_btns" id="btnClose">
</center>
</div>
</form>
</body>
</html>