javascript刷新父頁面的內容

適應於超級連接和彈出窗口 function RefreshParent() {     if (window.opener != null) {                               var btnSearch = window.opener.document.getElementById("btnSearch");         if (btnSearch != null && typeof (btnSearch) != "undefined") {             btnSearch.click();         }         else {             window.opener.location.href = window.opener.location.href;         }           }     window.opener = null;     window.open('', '_self');     window.close(); }
相關文章
相關標籤/搜索