在子窗口中操作父窗口(刷新)
我们常用window.open弹出子窗口,有时候想要在子窗口中操作父窗口,这时候就需要用到window.opener。
例如下面一行js可以用来刷新父窗口:
window.opener.location.href=window.opener.location.href
我们常用window.open弹出子窗口,有时候想要在子窗口中操作父窗口,这时候就需要用到window.opener。
例如下面一行js可以用来刷新父窗口:
window.opener.location.href=window.opener.location.href