在JS,我使用:關閉當前彈出窗口並重定向到父窗口
window.open('index.php?module=Contacts&action=UD_lookupemailtemplates&tempmode=userdefined&temp_url='+encodeURIComponent(temp_php_url),'emailtemplate','top=100,left=200,height=400,width=500,resizable=yes,scrollbars=yes,menubar=no,addressbar=no,status=yes')
要打開其中有幾個環節的小窗口。 現在對任何一個環節的點擊ID將被連接到一個URL,然後我用這個:
window.document.location.href = url;
這也是JS。它所做的是改變小彈出窗口的內容,但我需要它關閉彈出窗口,並在創建彈出窗口的主父窗口中打開此URL。
這可能嗎?