2011. 3. 3. 14:02 프로그래밍/JavaScript
팝업창에서 부모창으로 form data 전송
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>
'프로그래밍 > JavaScript' 카테고리의 다른 글
Input에 숫자만 입력할 수 있도록 (0) | 2011.11.23 |
---|---|
javascript로 숫자 validation (0) | 2011.11.15 |
javascript로 버튼에 print 링크 다는 방법! (1) | 2011.03.08 |
Radio, Checkbox 클릭 여부에 따라 input text , textarea 등 disabled 시키기. (1) | 2011.02.25 |
각종 input, checkbox , radiobox, textarea 등 초기화 하기. (0) | 2011.02.25 |