<!doctype html public "-//w3c//dtd xhtml 1.0 transitional//en" "http://www.w3.org/tr/xhtml1/dtd/xhtml1-transitional.dtd">
<html xmlns="http://www.111cn.net/ 1999/xhtml">
<head>
<meta http-equiv="content-type" content="text/html; charset=gb2312" />
<title>js 弹出窗口 返回值</title>
</head>
<body>
<form id="form1" name="form1" method="post" action="">
<input name="zone" type="text" id="zone" />
<input type="button" name="button" id="button" value="打开窗口" onclick="window.open('a.htm','vv');" />
</form>
</body>
</html>
a.htm代码
<script>
function c()
{
opener.document.getelementbyid("zone").value = document.all("zone.name").value;
window.opener = null;
window.close();
}
</script>
<input name="zone.name" type="text" id="zone.name" />
<a href="void(0);" onclick="网页特效:c();">返回值</a>