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;dialogHeigh t:350px;help:no;status:no");
if (ret){
alert('子窗口返回真!');
}else{
alert('子窗口返回假!');
}
}
</script>
</HEAD>
<BODY>
<INPUT id=button1 type=button value=Button name=button1 onclick="showmodal() ;">
</BODY>
</HTML>
2、child.html Html 代码 //child.html
<HTML>
<HEAD> <META NAME="GENERATOR" Content="Microsoft Visual Studio 6.0">
<TITLE></TITLE>
<script language="javascript">
function trans(tag){
if (tag==0){
window.returnValue=false;
} else{
window.returnValue =true;
} window.close();
}
</script>
</HEAD>
<BODY>
<INPUT id=button1 type=button value="返回真" name=button1 onclick="trans(1)">
<INPUT id=button2 type=button value="返回假" name=button2 onclick="trans(0)">
</BODY>
</HTML>
总结: 这样一来可以实现从模式窗口向父窗口传递值的作用,这个 returnValue 除了 可以是布尔值,整型值等以外还可以是个 js 数组,用来传递大量数据。