我在www.abc.com
中有一个链接,点击它会打开www.def.com
的弹出窗口。
来自www.def.com
的弹出窗口中有一个表单。点击" Save"表单上的按钮我希望关闭当前窗口
并且父母将重定向到某个位置。
在我从www.abc.com上显示表单之前,以下代码工作正常。
<script language="JavaScript">
parent.window.close();
parent.opener.parent.window[1].location.replace('/abc.jsp?custid=12345');
</script>
但现在"parent.opener" is returning null
。所以我能够关闭弹出窗口,但无法将父窗口重定向到
令人厌倦的位置。
我知道我要问的是有点连线,但这是要求。
答案 0 :(得分:2)
At&#34; abc.moc&#34;
<!DOCTYPE html>
<html>
<head>
<script>
// open `popup`
var popup = window.open("popup.html", "popup", "width=200,height=200");
// handler `message` event from `popup.html`
function receiveMessage(event) {
console.log(event, event.data);
this.location.href = event.data;
}
window.addEventListener("message", receiveMessage, false);
</script>
</head>
<body>
</body>
</html>
at&#34; def.moc&#34;
<!DOCTYPE html>
<html>
<head>
</head>
<body>
<form>
<input type="button" value="Save">
</form>
<script>
console.log(window.opener);
var button = document.querySelector("form input[type=button]");
button.onclick = function(e) {
e.preventDefault();
e.stopPropagation();
// do stuff with `form`
// call `.postMessage()` on `window.opener` with
// first parameter URL to redirect `abc.moc`,
// second parameter `location.href` of `abc.moc`
window.opener.postMessage("redirect.html",
window.opener.location.href);
// close `popup`
window.close();
}
</script>
</body>
</html>