我想问你如何从上一页将父页面重定向到某个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>

最佳答案

您的代码中有错误。应该

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'

关于javascript - 如何使用JavaScript重定向父页面,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/16704195/

10-10 00:49