반응형
부모
var retValue;
var myObject = new Object();
myObject.tempid = id; // 넘길 값
retValue = window.showModalDialog("팝업페이지", window, "dialogWidth:850px; dialogHeight:500px; center:yes; help:no; resizable:yes; scroll:no; status:no;");
function test(){
}
자식
var oMyObject = window.dialogArguments;// 팝업 실행 하는 페이지에서 값을 받아옴
temp(oMyObject.id); // 값을 넘겨줌..
부모창에 함수호출
oMyObject.test();