[부모창]
   var modifyArg = new Array();
   modifyArg[0] = window;   //부모창 자체를 모달로 넘긴다.
   var sFeatures = "dialogWidth:200px;dialogHeight:200px;scroll:no;center: yes; edge: raised; help: no; status: no;";
   window.showModalDialog( "./aaa.asp", modifyArg, sFeatures ); 

[모달창]
var param = window.dialogArguments; //모달창에서 부모창의 인자값을 받는다.
var parentWin = null ;  //부모창 자체를 받을 변수
 param[1] = null;
 try {
    parentWin = param[0];
   } catch ( e )
   {
    parentWin = null;
   }
window.returnValue = 1;   //띄워지는 창에(부모창에) 반환할 값을 설정해 준다.

+ Recent posts