window.opener , 是通过window.open打开 子 窗体的父窗体 的引用 。
比如在父窗体parentForm里面 , 通过window.open("subForm.html"),那么在subform.html中window.opener就代表parentForm 。既然在子窗体中能够拿到父窗体的引用,那么就 可以 在子窗体中 设置父窗体的 字段 值或者调用js方法。
实例:添加人员信息时,其中的机构信息通过子窗体完成输入 父亲窗体,用于添加人员信息。
子窗体完成输入后,机构信息( id 、 name )自动填充到父窗体的 orgId 、 orgName 域
html代码
机构 οnclick="openWin('org.do?select=true','selectorg',800,500,1)">
JS代码
/**打开新窗口(通过window.open())* f:链接地址* n:窗口的名称* w:窗口的宽度* h:窗口的高度* s:窗口是否有滚动条,1:有滚动条;0:没有滚动条*/ functionopenWin(f,n,w,h,s){ sb= s == "1" ? "1" : "0"; l= (screen.width - w)/2; t= (screen.height - h)/2; sFeatures= "left="+ l +",top="+ t +",height="+ h+",width="+ w +",center=1,scrollbars=" + sb +",status=0,directories=0,channelmode=0"; openwin= window.open(f , n , sFeatures ); if(!openwin.opener) openwin.opener= self; openwin.focus(); returnopenwin; }
子窗体,供选择机构信息。
当选择后(通过单击 radio ),机构信息( id 、 name )将填充到父窗体的 orgId 、 orgName 域
html代码
${org.id}${org.name}${org.sn }${org.parent.name}
JS代码
functionselectOrg(id,name){ if(window.opener){ window.opener.document.all.orgIdId.value= id; window.opener.document.all.orgNameId.value= name; window.close(); } }
选择机构信息后的结果
完成机构信息( id 、 name )的输入了,只是 id 在隐藏域中,看不到而已。
小结 说到对父窗体的引用,除了 window.opener,就是window.parent了 。window.opener是用于通过window.open方式打开子窗体,而window.parent是用于通过iframe方式打开子窗体。