分享至
使用window.open()開出一個子視窗,子視窗中可以使用opener.location.reload()使母視窗重新整理
那如果使用<a href="" target="_blank"></a>開出的視窗,如何使母視窗重新整理呢
已邀請的邦友 {{ invite_list.length }}/5
一樣透過window.opener阿:
<pre class="c" name="code"> window.opener.location.reload();
如果你的呼叫是來自有frame的視窗,要同時重整要多加一個parent window.opener.parent.location.reload();
IT邦幫忙