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.
我使用下面的 JS 刷新父页面,但我收到以下消息
代码:
window.opener.document.location.reload(); window.close();
请帮助我如何避免这种情况
您可以避免POST在需要刷新之前使用或设置 location 属性而不是使用reload:
POST
reload
window.opener.document.location = window.opener.document.location;
post另一种选择是在请求完成后直接重定向父页面。之后,孩子可以在没有弹出窗口的情况下刷新页面。
post