1

我想问你如何将父页面从 pup 页面重定向到某个 url?我尝试了几个选项作为parentoropener并且没有任何工作。请帮助我了解问题所在。

这是我使用的代码:

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

1 回答 1

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'

于 2013-05-23T01:29:29.900 回答