javascript中还有一个函数window.showModalDialog也可以打开一个新窗体,不过他打开的是一个模态窗口,那么如何在父窗体和子窗体之间传值呢?我们先看该函数的定义:vReturnValue = window.showModalDialog(sURL [, vArguments] [,sFeatures])
参数说明:
sURL--必选参数,类型:字符串。用来指定对话框要显示的文档的URL。
vArguments--可选参数,类型:变体。用来向对话框传递参数。传递的参数类型不限,包括数组等。对话框通过window.dialogArguments来取得传递进来的参数。
sFeatures--可选参数,类型:字符串。用来描述对话框的外观等信息,可以使用以下的一个或几个,用分号“;”隔开。
如:"dialogWidth=200px;dialogHeight=100px"
因此我们可以通过window.dialogArguments参数来在两个窗体之间传值
如下面两个页面:FatherPage.htm:
<script type="text/javascript"> function OpenChildWindow() { window.showModalDialog('ChildPage.htm',document.getElementById('txtInput').value); } </script> <input type="text" id="txtInput" /> <input type="button" value="OpenChild" onclick="OpenChildWindow()" />
ChildPage.htm:
<body onload="Load()"> <script type="text/javascript"> function Load() { document.getElementById('txtInput').value=window.dialogArguments ; } </script> <input type="text" id="txtInput" /> </body>
上面只是传递简单的字符串,我们还可以传递数组,如:FatherPage.htm:
<script type="text/javascript"> function OpenChildWindow() { var args = new Array(); args[0] = document.getElementById('txtInput').value; window.showModalDialog('ChildPage.htm',args); } </script> <input type="text" id="txtInput" /> <input type="button" value="OpenChild" onclick="OpenChildWindow()" />
ChildPage.htm:
<script type="text/javascript"> function Load() { document.getElementById('txtInput').value=window.dialogArguments[0] ; } </script>
同样我们还可以传递对象,如:FatherPage.htm:
<script type="text/javascript"> function OpenChildWindow() { var obj = new Object(); obj.name = document.getElementById('txtInput').value; window.showModalDialog('ChildPage.htm',obj); } </script> <input type="text" id="txtInput" /> <input type="button" value="OpenChild" onclick="OpenChildWindow()" />
ChildPage.html:
<script type="text/javascript"> function Load() { var obj = window.dialogArguments; document.getElementById('txtInput').value=obj.name ; } </script>
以上都是从父窗体向子窗体传值,那么如何从子窗体向父窗体传值呢 ?其实通过window.returnValue就可以获取子窗体的值,window.returnValue与window.dialogArguments一样,可以是任意变量,包括字符串,数组,对象等。如:FatherPage.html:
<script type="text/javascript"> function OpenChildWindow() { var obj = new Object(); obj.name = document.getElementById('txtInput').value; var result = window.showModalDialog('ChildPage.htm',obj); document.getElementById('txtInput').value = result.name; } </script> <input type="text" id="txtInput" /> <input type="button" value="OpenChild" onclick="OpenChildWindow()" />
ChildPage.html:
<body onload="Load()"> <script type="text/javascript"> function Load() { var obj = window.dialogArguments; document.getElementById('txtInput').value=obj.name ; } function SetValue() { var obj = new Object(); obj.name = document.getElementById('txtInput').value; window.returnValue = obj; window.close(); } </script> <input type="text" id="txtInput" /> <input type="button" value="SetFather" onclick="SetValue()" /> </body>