글
수정된 정보를 다시 부모창으로 넘겨주기, 부모에서 자식 창으로 넘겨주기
J/Javascript
2014. 3. 18. 16:23
자식 -> 부모
A.html
function modal_pop(){
retVal = window.showModalDialog("B.html", window, "옵션");
alert(retVal);
}
B.html
function set_retValue(){
var result = "잘 생겼다 잘생겼다";
window.returnValue = result;
}
<body onUnLoad="set_retValue()">
부모 -> 자식
A.html
var test1 = '123'; var test2 = '234';
window.open('B.html?name=' + test1 + '&hobby=' + test2, "페이지 별칭", "옵션");
B.html
function getParameter(p){
if(p) r = location.search.match(new RegExp('[&!]' + p + '=(.*?)(&|$)'));
return r && r[1] ? r[1] : null;
}
alert(getParameter('name')); alert(getParameter('hobby'));
'J > Javascript' 카테고리의 다른 글
Script async와 defer (0) | 2014.03.19 |
---|---|
ShowModal, ShowModaless Dialog (0) | 2014.03.18 |
Form안 Json 만들기 (0) | 2014.03.18 |
클로져 활용법 (0) | 2014.03.18 |
javascript arguments를 array로 변환하기 (0) | 2014.03.16 |