window.returnValue()返回值为undefined?
A页面:
function AddNode()
{
var recdata=false;
recdata=window.showModalDialog( "B.aspx ",window, "dialogWidth:300px;dialogHeight:150px;dialogLeft:300px;dialogTop:200px;center:yes;help:no;resizable:no;status:no; ");
alert(recdata);
}
B页面:
function returnValue()
{
window.returnValue = "aaa ";
//alert(window.returnValue);
window.close();
}
alert可以显示window.returnValue值,但是在A页面却返回undefined值 这是为什么?
困惑了半天
------解决方案--------------------把returnValue()函数名改一下,名字取名欠缺