window.opener,是透過window.open開啟子窗體的父窗體的引用。
例如在父窗體parentForm裡面,透過window.open("subForm.html"),那麼在subform.html中window.opener就代表parentForm。既然在子窗體中能夠拿到對父窗體的引用,那麼就可以在子窗體中設定父窗體的欄位值或是呼叫js方法。
實例:新增人員資訊時,其中的機構資訊透過子窗體完成輸入
父親窗體,用於新增人員資訊。
子窗體完成輸入後,機構資訊(id、name)自動填入父窗體的orgId、orgName域
html代碼
機構
onclick="openWin('org.do?select=true','selectorg',800,500,1)">
tr>
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領域
程式碼如下:
functionselectOrg(id,name){
if(window.opener>if(window.opener>if(window.opener>if(window.opener>if(window.opener>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方式開啟子窗體。