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.
我有一个表单类型的交易,用户单击一个链接,然后它在弹出窗口中生成一个小表单。
弹出窗口关闭时是否可以强制重新加载页面?
捕获子窗口上的关闭事件并使用类似这样的东西重新加载父窗口
if (window.opener && !window.opener.closed) { window.opener.location.reload(); }