我想问你如何将父页面从 pup 页面重定向到某个 url?我尝试了几个选项作为parent
oropener
并且没有任何工作。请帮助我了解问题所在。
这是我使用的代码:
<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>