window.opener.location.reload()

if(window.opener){//如果父页面还在的话
window.opener.location.reload();//先刷新父页面
window.opener = null;//
window.close();//这两句是为了不出现提示
}

/////////////////////////
或者你可以检测事件。

window.onunload = function(){
if(window.opener) window.opener.location.reload();
}

你可能感兴趣的:(window.open)