用window.open一个IE窗体,在窗体关闭后在原窗体上怎么能得到我所选的某项信息的值,填加在我原窗体的text中如下代码:
wyzh 2002-08-23 01:10:14 html>
<body bgcolor="#FFFFFF">
<div align="center">
<td colspan="3">客户名称</td>
<td width="198">
<input type="text" name="khdm" size="10" maxlength="20" >
<input type="button" name="selectKhbm" value="..." onclick="window.open('选择客户信息.htm', '选择客户信息', 'width=550, height=350')">
</td>
</body>
</html>
也就是,怎么能使window.open('选择客户信息.htm', '选择客户信息', 'width=550, height=350')关闭后,使<input type="text" name="khdm" size="10" maxlength="20" >的value得到值。