在子页面添加监测弹出页面的关闭事件,然后刷新父页面就行了
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;