일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- Stock ipo
- 자바스크립트
- 공모주 청약
- 공모주
- 공모주 청약 일정
- 자바
- 6월 공모주 청약 일정
- 제이쿼리
- JavaScript
- 맥
- 리눅스
- php
- Oracle
- 7월 공모주 청약 일정
- 오라클
- jquery
- SQL
- html
- 코드이그나이터
- codeigniter
- Stock
- Eclipse
- 주식 청약
- 주식 청약 일정
- MYSQL
- java
- 주식
- linux
- css
- IPO
- Today
- Total
개발자의 끄적끄적
[JavaScript] 부모창과 자식창의 값 전달 [펌] 본문
[JavaScript] 부모창과 자식창의 값 전달 [펌]
window.open()을 이용하면 팝업창을 띄울 수 있다. 이때 팝업창은 자식창, 팝업을 띄우는 창은 부모창이 된다. 자식창과 부모창간에는 서로 값을 주고받을 수 있다.
부모창에서 자식창에 접근하려면 팝업창을 특정 변수에 담아서 그 변수를 통해 접근하면 된다. 반대로 자식창에서 부모창에 접근하려면 opener를 이용해서 접근을 하면 된다.
부모창에서 자식창으로 값 전달하기
■ Parent.html
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 |
<!DOCTYPE html> <html> <head> <meta charset="EUC-KR"> <title>Parent</title>
<script type="text/javascript">
var openWin;
function openChild() { // window.name = "부모창 이름"; window.name = "parentForm"; // window.open("open할 window", "자식창 이름", "팝업창 옵션"); openWin = window.open("Child.html", "childForm", "width=570, height=350, resizable = no, scrollbars = no"); }
function setChildText(){ openWin.document.getElementById("cInput").value = document.getElementById("pInput").value; }
</script>
</head> <body>
<br> <b><font size="5" color="gray">부모창</font></b> <br><br> <input type="button" value="자식창 열기" onclick="openChild()"><br> 전달할 값 : <input type="text" id="pInput"> <input type="button" value="전달" onclick="setChildText()"> </body> </html> |
cs |
자식창 열기를 클릭하면 openChild( ) 함수가 실행되며 자식창이 열린다. 그리고 전달을 클릭하면 setChildText( )가 실행되며 자식창으로 값이 전달된다.
-
16줄 : open된 자식창을 openWin이라는 변수에 담는다.
-
21줄 : 자식창에 접근하기 위해 openWin(자식창)을 사용한다. openWin.document.getElementById("cInput").value 이런 식으로 openWin부터 시작하여 자식창에 있는 특정 element에 접근할 수 있다.
■ Child.html
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
<!DOCTYPE html> <html> <head> <meta charset="EUC-KR"> <title>Child</title>
</head> <body> <br> <b><font size="5" color="gray">자식창</font></b> <br><br>
<input type="text" id="cInput"><br><br> <input type="button" value="창닫기" onclick="window.close()"> </body> </html> |
cs |
■ 실행결과
먼저 부모창에서 자식창열기 버튼을 클릭한다.
자식창이 열리면 부모창에서 전달할 값을 입력 후 전달 버튼을 클릭한다. 그러면 입력한 값이 자식창으로 전달된다.
자식창에서 부모창의 값 가져오기
이번에는 자식창에서 부모창에 입력된 값을 가져와보자.
■ Parent.html
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 |
<!DOCTYPE html> <html> <head> <meta charset="EUC-KR"> <title>Parent</title>
<script type="text/javascript">
function openChild() { // window.name = "부모창 이름"; window.name = "parentForm"; // window.open("open할 window", "자식창 이름", "팝업창 옵션"); window.open("Child.html", "childForm", "width=570, height=350, resizable = no, scrollbars = no"); }
</script>
</head> <body>
<br> <b><font size="5" color="gray">부모창</font></b> <br><br> <input type="button" value="자식창 열기" onclick="openChild()"><br> 전달할 값 : <input type="text" id="pInput"> </body> </html> |
cs |
■ Child.html
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 |
<!DOCTYPE html> <html> <head> <meta charset="EUC-KR"> <title>Child</title>
<script type="text/javascript"> function getParentText(){ document.getElementById("cInput").value = opener.document.getElementById("pInput").value; } </script>
</head> <body> <br> <b><font size="5" color="gray">자식창</font></b> <br><br>
<input type="text" id="cInput"> <input type="button" value="가져오기" onclick="getParentText()"> <br><br> <input type="button" value="창닫기" onclick="window.close()"> </body> </html> |
cs |
자식창에서 부모창에 접근하기 위해서는 opener를 사용해야 한다. 9줄 처럼 opener를 이용하면 부모창에 있는 특정 element에 접근하여 값을 가져올 수 있다.
자식창에서 부모창으로 값 전달하기
■ Parent.html
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 |
<!DOCTYPE html> <html> <head> <meta charset="EUC-KR"> <title>Parent</title>
<script type="text/javascript">
var openWin;
function openChild() { // window.name = "부모창 이름"; window.name = "parentForm"; // window.open("open할 window", "자식창 이름", "팝업창 옵션"); openWin = window.open("Child.html", "childForm", "width=570, height=350, resizable = no, scrollbars = no"); }
</script>
</head> <body>
<br> <b><font size="5" color="gray">부모창</font></b> <br><br> <input type="button" value="자식창 열기" onclick="openChild()"><br> 전달할 값 : <input type="text" id="pInput"> </body> </html> |
cs |
■ Child.html
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 |
<!DOCTYPE html> <html> <head> <meta charset="EUC-KR"> <title>Child</title>
<script type="text/javascript"> function setParentText(){ opener.document.getElementById("pInput").value = document.getElementById("cInput").value } </script>
</head> <body> <br> <b><font size="5" color="gray">자식창</font></b> <br><br>
<input type="text" id="cInput"> <input type="button" value="전달하기" onclick="setParentText()"> <br><br> <input type="button" value="창닫기" onclick="window.close()"> </body> </html> |
cs |
자식창에서 부모창으로 값을 전달하는 것은 부모창의 값을 가져오는 것과 반대로 처리하면 된다. 자식창에 입력된 값을 가져온 다음 opener를 이용해 부모창에 있는 특정 element에 값을 담으면 된다.
출처: https://all-record.tistory.com/149 [세상의 모든 기록]
'개발 > javascript & jquery' 카테고리의 다른 글
[javascript/api] 다음 카카오 지도 API 연동 [펌] (0) | 2020.05.22 |
---|---|
[javascript] 다음 주소 api https [펌] (0) | 2020.05.21 |
[Vue.js] 참고 사이트 [펌] (0) | 2020.05.06 |
[javascript] fetch api 사용법 (0) | 2020.04.21 |
[javascript] youtube api 로 리스트 가져오기 (0) | 2020.04.21 |