var result = window.showModalDialog('A.aspx', null, 'dialogWidth:600px;dialogHeight:500px;center:yes;help:no;resizable:no;status:no'); //打开模态子窗体,并获取返回值
if (result == null) {
if (result == undefined) {
result = window.returnValue;
}
if (result == null) {
alert("没有获取到返回值信息。");
return;
}
}