a1.html
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>a.html</title>
<meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
<meta http-equiv="description" content="this is my page">
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
</head>
<script language="JavaScript">
function openWin(){
/*
* window.open(sURL,sName,sFeatures,bReplace)
* * sURL:字符串(String)。指定要被加载的HTML文档的 URL 地址。请求路径
* * sName:字符串(String)。 指定打开的窗口的名字。
* * _blank:在新窗口中打开 sUrl.
* * _self :sUrl 在当前窗口中打开,覆盖当前文档。
* * _top :在所有框架之外的最顶层窗口中打开 sUrl 。假如当前窗口无框架结构,此参数值等同于 _self 。
* * sFeatures:字符串(String)。 指定窗口装饰样式。
* * bReplace:布尔值(Boolean)。false | true
*/
window.open("a2.html","_blank","height=200,width=400,status=yes,toolbar=no,menubar=no,location=no");
}
</script>
<body>
<form name="form1" action="test.html" method="post" >
客户id: <input type="text" name="cid" value="" id="cid" ><br>
客户名称:<input type="text" name="cname" value="" id="cname" >
<input type="button" name="ok" value="请选择客户" onclick="openWin();"/>
</form>
</body>
</html>
a2.html
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>a2.html</title>
<meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
<meta http-equiv="description" content="this is my page">
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
</head>
<script language="JavaScript">
function viewData(cid,cname){
/*
* window.opener
* * 通过window对象的opener属性来获取a1页面的window对象
* * sData就代表了a1页面的window对象
* * a1页面通过调用window对象的open()方法打开a2页面,但是没有向a2页面传递a1页面的window对象。
* 但是a2页面通过a2页面的window对象的opener属性可以直接获取a1页面的window对象。
*/
var sData = window.opener;
sData.document.getElementById("cid").value = cid;
sData.document.getElementById("cname").value = cname;
window.close();
}
</script>
<body>
<table border="1">
<tr>
<td>操作</td>
<td>客户id</td>
<td>客户名称</td>
</tr>
<tr>
<td><input type="button" value="选择" id="ss" onclick="viewData('001','深圳华为')"></td>
<td>001</td>
<td>深圳华为</td>
</tr>
<tr>
<td><input type="button" value="选择" onclick="viewData('002','用友软件')"> </td>
<td>002</td>
<td>用友软件</td>
</tr>
</table>
</body>
</html>
a1.html
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>a.html</title>
<meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
<meta http-equiv="description" content="this is my page">
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
</head>
<script language="JavaScript">
function openWin(){
/*
* window.open(sURL,sName,sFeatures,bReplace)
* * sURL:字符串(String)。指定要被加载的HTML文档的 URL 地址。请求路径
* * sName:字符串(String)。 指定打开的窗口的名字。
* * _blank:在新窗口中打开 sUrl.
* * _self :sUrl 在当前窗口中打开,覆盖当前文档。
* * _top :在所有框架之外的最顶层窗口中打开 sUrl 。假如当前窗口无框架结构,此参数值等同于 _self 。
* * sFeatures:字符串(String)。 指定窗口装饰样式。
* * bReplace:布尔值(Boolean)。false | true
*/
window.open("a2.html","_blank","height=200,width=400,status=yes,toolbar=no,menubar=no,location=no");
}
function setData(cid,cname){
document.getElementById("cid").value = cid;
document.getElementById("cname").value = cname;
}
</script>
<body>
<form name="form1" action="test.html" method="post" >
客户id: <input type="text" name="cid" value="" id="cid" ><br>
客户名称:<input type="text" name="cname" value="" id="cname" >
<input type="button" name="ok" value="请选择客户" onclick="openWin();"/>
</form>
</body>
</html>
a2.html
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>a2.html</title>
<meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
<meta http-equiv="description" content="this is my page">
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
</head>
<script language="JavaScript">
function viewData(cid,cname){
/*
* window.opener
* * 通过window对象的opener属性来获取a1页面的window对象
* * sData就代表了a1页面的window对象
* * a1页面通过调用window对象的open()方法打开a2页面,但是没有向a2页面传递a1页面的window对象。
* 但是a2页面通过a2页面的window对象的opener属性可以直接获取a1页面的window对象。
*/
var sData = window.opener;
sData.setData(cid,cname);
window.close();
}
</script>
<body>
<table border="1">
<tr>
<td>操作</td>
<td>客户id</td>
<td>客户名称</td>
</tr>
<tr>
<td><input type="button" value="选择" id="ss" onclick="viewData('001','深圳华为')"></td>
<td>001</td>
<td>深圳华为</td>
</tr>
<tr>
<td><input type="button" value="选择" onclick="viewData('002','用友软件')"> </td>
<td>002</td>
<td>用友软件</td>
</tr>
</table>
</body>
</html>