在 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。
那可能吗 ?