Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个条件,我需要在关闭子窗口后刷新父窗口。
例如:
假设 A.aspx 是我从中打开弹出窗口 (B.aspx) 的页面。当我关闭 B.aspx 页面时,它应该重新加载我的 A.aspx。
注意:我正在使用window.open()
window.open()
您可以通过使用控制弹出窗口中的主窗口window.opener
window.opener
window.addEventListener('beforeunload', function(eventObject) { window.opener.location.reload(); });