window.returnValue使用方法

returnValue是javascript中html的window对象的属性,目的是返回窗口值,当用window.showModalDialog函数打开一个IE的模式窗口(模式窗口知道吧,就是打开后不能操作父窗口,只能等模式窗口关闭时才能操作)时,用于返回窗口的值,下面举个例子:     1、parent.html Html代码 

 

//father.html    <HTML>   <HEAD>   

<META NAME="GENERATOR" Content="Microsoft Visual Studio 6.0">   <TITLE></TITLE>   

<script language="javascript">      

function showmodal(){    

var ret = window.showModalDialog("child.htm",null,"dialogWidth:350px;dialogHeight:350px;help:no;status:no");        if (ret){alert('子窗口返回真!');        }else{    

         alert('子窗口返回假!');       }    }

你可能感兴趣的:(window)