js关闭当前页面刷新父页面

时间:2021-12-29 23:44:49

在子页面添加监测弹出页面的关闭事件,然后刷新父页面就行了

window.onbeforeunload = function() {
//这里刷新方法有很多,具体要看你的子窗口是怎样出来的
window.opener.location.reload();
//parent.location.reload();
//self.opener.location.reload();
//window.opener.location.href=window.opener.location.href;
};

注:

子窗口是用 window.open()打开的 就用window.opener.location.href=window.opener.location.href;