Window opener property
The opener property returns a reference to the window that created the window.
When opening a window with window.open(), you can use this property from the destination window to return details of the source (parent) window.
Coding Tip: window.opener.close() will close the source (parent) window.
Syntax
부모창
var parentWindow;
function openCBAWindow(){
parentWindow = window.open('', 'CbaWindow', 'width=410, height=450, resizable=0, scrollbars=no, status=0, titlebar=0, toolbar=0, left=300, top=200' );
document.reqCBAForm.action = 'XXX.html';
document.reqCBAForm.target = 'parentWindow';
document.reqCBAForm.submit();
}
function testCheck(name, type){
alert("name:"+name+ " | type:"+type);
}
팝업창
try{
window.opener.testCheck('<%=name%>','');
self.close();
}catch(e){
alert("E:"+e);
}
오픈 된 팝업 창 유무에 따른 처리 방법
var openerType = typeof opener.location.href;
if( openerType == 'string' ){
opener.location.href='xxx.html'; //오픈된 팝업창인 경우 부모창(opener)의 페이지 이동
opener.focus();
}else{
window.open(page,'',''); //오픈된 팝업창이 아닌 경우 새 창 열기
}
부모창 > 팝업창1 > 팝업창2 ... 오픈한 경우 opener사용 방법
opener.opener.form1.elements["seq"].value = seq; //팝업창1.부모창.폼1.seq
opener.opener.form1.elements["name"].value = name;
opener.opener.form1.elements["date"].value = date;
window.close(); //현재화면(팝업2) 닫음
opener.window.close(); //팝업1 닫음
출처 : http://302.pe.kr/297
'WEB' 카테고리의 다른 글
window.open post (0) | 2012.08.22 |
---|---|
접속한 사람의 IP (0) | 2012.08.19 |
html태그로 엑셀 만들어 줄 때 한글 깨짐 (0) | 2012.07.29 |
struts 개행문자 줄바꿈태그 변경 (0) | 2012.07.29 |
Cannot get a connection, pool exhausted (0) | 2012.07.29 |