刷新父页面(window.open打开的页面)

window.opener.location.reload(true); //true代表从服务器重新获取,false为从缓存中获取,默认为false
或window.opener.location.href = window.opener.location.href;
或window.operner.location.replace(location);
原文地址:https://www.cnblogs.com/csj007523/p/1286907.html