如何使用javascript重定向父页面

时间:2013-05-23 01:25:40

标签: javascript

我想问你如何将父页面从pup up页面重定向到某个url?我尝试了几个选项parentopener,但没有任何效果。请帮我理解出了什么问题。

这是我使用的代码:

<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>

1 个答案:

答案 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'