Reload parent window from child window

前端 未结 12 1380
-上瘾入骨i
-上瘾入骨i 2020-11-28 09:35

How can I reload my child window\'s parent using jQuery?

12条回答
  •  Happy的楠姐
    2020-11-28 10:19

    This working for me:

      window.opener.location.reload()
      window.close();
    

    In this case Current tab will close and parent tab will refresh.

提交回复
热议问题