window.showModalDialog
调用模态窗口父页面的方法
window必须做为入参
window.showModalDialog(url, window, styleCheck);
dialogArguments.parentFn();
重新加载模态窗口父页面
window.dialogArguments.location.reload();
window.parent 是iframe页面调用父页面对象,
重新加载父页面
window.parent.location.reload();
window.opener 是window.open 打开的子页面调用父页面对象;
重新加载父页面
window.opener.location.reload()