window.opener

//在弹出窗口中操作被弹出的页面中的内容,比如双击、单机等事件而弹出的窗口,然后再关闭弹出窗口
window.opener.document.getElementById("clientId").value = ‘...’;
window.close();

页面跳转小技巧
if(window.self != window.top){
    window.top.location = window.self.location;
}

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