window.showModalDialog和window.open关闭子页面时刷新父页面 IE7,IE8

  if(true){              window.showModalDialog(url,arguemnts,"dialogWidth:" + Width + "px;dialogHeight:" + Height + "px;center:yes;status:no;scroll:yes;help:no;");
                //或者window.showModelessDialog

               //模态窗口在关闭后可以直接在后面跟上刷新的语句

               window.location.reload();

}else{

window.open(url,"","width=" + Width + "px,height=" + Height + "px,resizable=1,scrollbars=1"); 

}

在 window.open打开的窗口中,关闭子窗口并刷新父窗口

window.opener.location.reload();window.opener=null;window.close();

在window.showModalDialog打开窗口中,关闭子窗口并刷新父窗口

window.dialogArguments.window.location = window.dialogArguments.window.location; self.close();

window.dialogArguments.window.location=window.dialogArguments.window.location;

你可能感兴趣的:(window.showModalDialog和window.open关闭子页面时刷新父页面 IE7,IE8)