在JS中,window.opener只是對彈出窗口的母窗口的一個引用。好比:
a.html中,經過點擊按鈕等方式window.open出一個新的窗口b.html。那麼在b.html中,就能夠經過window.opener(省略寫爲opener)來引用a.html,包括a.html的document等對象,操做a.html的內容。
假如這個引用失敗,那麼將返回null。因此在調用opener的對象前,要先判斷對象是否爲null,不然會出現「對象爲空或者不存在」的JS錯誤。javascript
在通常的用法中,只是用來解決關閉窗口時不提示彈出窗口, 而對它更深層的瞭解通常比較少。其 實 window.opener是指調用window.open方法的窗口。
在工做中主要是用來解決部分提交的。這種跨頁操做對工做是很是有幫助的。
若是你在主窗口打開了一個頁面,而且但願主窗口刷新就用這個,打開頁面的window.opener就至關於
主窗口的window。
主窗口的刷新你能夠用
window.opener.location.reload();
若是你用虛擬的目錄:如struts的*.do會提示你重試
你能夠改爲這樣 window.opener.yourformname.submit()
就行了html
2〉java
在應用中有這樣一個狀況, 在A窗口中打開B窗口,在B窗口中操做完之後關閉B窗口,同時自動刷新A窗口 function closeWin(){ hasClosed = true; window.opener.location="javascript:reloadPage();"; window.close(); } function window.onbeforeunload(){ if(!hasClosed){ window.opener.location="javascript:reloadPage();"; } } </script> 上面的代碼在關閉B窗口的時候會提示錯誤,說缺乏Object,正確的代碼以下: function closeWin(){ hasClosed = true; window.opener.location="javascript:reloadPage();"; window.opener=null; window.close(); } function window.onbeforeunload(){ if(!hasClosed){//若是已經執行了closeWin方法,則不執行本方法 window.opener.location="javascript:reloadPage();"; } } </script> reloadPage方法以下: function reloadPage() { history.go(0); document.execCommand("refresh") document.location = document.location; document.location.reload(); } PS:因爲須要支持正常關閉和強制關閉窗口時能捕捉到事件,用了全局變量hasClosed ============================================== 補充,在父窗口是frame的時候在刷新父窗口的時候會出現問題: The page cannot be refreshed without resending the information. 後修改以下: window.opener.parent.document.frames.item('mainFrame').location.href = window.opener.location.href; 不須要執行自帶的reload()方法,注意,不要再多此一舉加上這一句: window.opener.parent.document.frames.item('mainFrame').location.reload(); ======================================================================================== 最後,爲了同時支持刷新普通父窗口和frame父窗口,代碼以下: function closeWin() { hasClosed = true; <%if(null != frame){%> window.opener.parent.document.frames.item('mainFrame').location.href = window.opener.location.href; <%}else{%> window.opener.location = "javascript:reloadPage();"; <%}%> //window.opener.top.mainFrame.location="javascript:reloadPage();"; //self.opener.frames.mainFrame.location.reload(true); window.opener = null; window.close(); } function window.onbeforeunload(){ if (!hasClosed) { <%if(null != frame){%> window.opener.parent.document.frames.item('mainFrame').location.href = window.opener.location.href; <%}else{%> window.opener.location = "javascript:reloadPage();"; <%}%> window.opener = null; } }