我想问你如何将父页面从pup up页面重定向到某个url?我尝试了几个选项parent
或opener
,但没有任何效果。请帮我理解出了什么问题。
这是我使用的代码:
<html>
<head>
<script>
function openWin(){
myWindow=window.open('','','width=200,height=100');
myWindow.document.write("<p>This is 'myWindow'</p> <button onclick=\"window.opener.location.href = ='http://www.google.com'; window.close();\">refresh</button>");
myWindow.focus();
}
</script>
</head>
<body>
<input type="button" value="Open window" onclick="openWin()" />
</body>
</html>
答案 0 :(得分:2)
您的代码中有错误。应该是
myWindow.document.write("<p>This is 'myWindow'</p> <button onclick=\"window.opener.location.href = 'http://www.google.com'; window.close();\">refresh</button>");
即删除=
之前的额外'http://www.google.com'
。