1. 부모 페이지( Parent Page ) 에서 .
<script
type="text/javascript">
window.name = "parent";
<
/script>
2. 팝업창페이지( Popup
Page ) 에서.
<script type="text/javascript">
var fData = document.getElementById("form_id");
fData.target = "parent" ; <!-- 1. 에서 정한 부모 페이지의 window.name 과 일치해야함 -->
fData.action = "http://...."; <!-- 부모창에서 form 을 submit 할 주소 -->
fData.submit();
self.close();
< /sciprt>
< form name ="form_id" method = "post" action=""/>
...
< /form>
fData.target = "parent" ; <!-- 1. 에서 정한 부모 페이지의 window.name 과 일치해야함 -->
fData.action = "http://...."; <!-- 부모창에서 form 을 submit 할 주소 -->
fData.submit();
self.close();
< /sciprt>
< form name ="form_id" method = "post" action=""/>
...
< /form>
반응형
'차근차근 > JAVA JSP' 카테고리의 다른 글
forEach , request.setAttribute (0) | 2014.07.26 |
---|---|
executeQueryForObject returned too many results.,queryForList,queryForObject (0) | 2014.07.26 |
window.onload와 window::onload() (0) | 2014.07.26 |
response.sendRedirect() (0) | 2014.07.26 |
Cannot forward after response has been committed (0) | 2014.07.26 |