window.returnValue是javascript中html的window对象的属性,目的是返回窗口值。当用window.showModalDialog函数打开一个HTML内容的模态对话框窗口,(打开后不能操作父窗口,只能等模式窗口关闭时才能操作),用于返回窗口的值,从而可以实现从模态对话框窗口向父窗口传递值的作用。
实例如:
parent.html
function ShowColor()
{
var fcolor=showModalDialog("img/child.htm?ok",false,"dialogWidth:106px;dialogHeight:110px;status:0;dialogTop:"+(+120)+";dialogLeft:"+(+120));
if(fcolor!=null && fcolor!="undefined") document.form1.color.value = fcolor;
}
child.html
<script language="javascript">
function ColorSel(col)
{
window.returnValue = col;
window.close();
}
</script>
<table width="100" border="0" cellspacing="1" cellpadding="1" style="CURSOR: pointer">
<tr>
<td bgcolor="#FF0000" onClick="ColorSel('#FF0000');" width="20%"> </td>
</tr>
</table>