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(); }