如我们新建窗体FatherPage.htm: XML-Code: 复制代码 代码如下: <BR>function OpenChildWindow() <BR>{ <BR>window.open('ChildPage.htm'); <BR>} <BR> 然后在ChildPage.htm中即可通过window.opener来访问父窗体中的元素: XML-Code: 复制代码 代码如下: <BR>function SetValue() <BR>{ <BR>window.opener.document.getElementById('txtInput').value <BR>=document.getElementById('txtInput').value; <BR>window.close(); <BR>} <BR> 其实在打开子窗体的同时,我们也可以对子窗体的元素进行赋值,因为window.open函数同样会返回一个子窗体的引用,因此FatherPage.htm可以修改为: XML-Code: 复制代码 代码如下: <BR>function OpenChildWindow() <BR>{ <BR>var child = window.open('ChildPage.htm'); <BR>child.document.getElementById('txtInput').value <BR>=document.getElementById('txtInput').value; <BR>} <BR> 通过判断子窗体的引用是否为空,我们还可以控制使其只能打开一个子窗体: XML-Code: 复制代码 代码如下: <BR>var child <BR>function OpenChildWindow() <BR>{ <BR>if(!child) <BR>child = window.open('ChildPage.htm'); <BR>child.document.getElementById('txtInput').value <BR>=document.getElementById('txtInput').value; <BR>} <BR> 光这样还不够,当关闭子窗体时还必须对父窗体的child变量进行清空,否则打开子窗体后再关闭就无法再重新打开了: XML-Code: 复制代码 代码如下: <BR>function SetValue() <BR>{ <BR>window.opener.document.getElementById('txtInput').value <BR>=document.getElementById('txtInput').value; <BR>window.close(); <BR>} <BR>function Unload() <BR>{ <BR>window.opener.child=null; <BR>} <BR>