10

我正在创建一个转到 hello.html 的弹出窗口。当我关闭弹出窗口(hello.html)时,我希望我的原始(父页面)重新加载。我似乎无法让它工作,但我已经接近了。这是我到目前为止的主页和 hello.html 页面的代码......

<!DOCTYPE html>
<html>
<head>
<script type="text/javascript">
function open_win()
{
window.open("hello.html","_blank","toolbar=yes, location=yes, directories=no, status=no, menubar=yes, scrollbars=yes, resizable=no, copyhistory=yes, width=400, height=400");
}
</script>


<script language="JavaScript">

function refreshParent() {
  window.opener.location.href = window.opener.location.href;

  if (window.opener.hello.html)

 {
    window.opener.hello.html.close()
  }
  window.close();
}
</script>


</head>

<body>

<script type="text/javascript">

var d=new Date();
document.write(d);

</script>

<form>
<input type="button" value="Open Window" onclick="open_win()">
</form>
</body>
</html>

这是hello.html...

<!DOCTYPE html>
<html>
<head>
<script type="text/javascript">
</script>
</head>
<body>

Hello

</body>
</html>
4

6 回答 6

12

订阅子窗口中的卸载事件,并从子窗口调用父窗口通知它正在关闭!

编辑添加了代码示例...

function popupClosing() {
  alert('About to refresh');
  window.location.href = window.location.href;
}

var w = window.open("hello.html","_blank","toolbar=yes, location=yes, directories=no, status=no, menubar=yes, scrollbars=yes, resizable=no, copyhistory=yes, width=400, height=400");
w.onunload = function () {
  window.parent.popupClosing()
};
于 2012-07-09T15:39:19.397 回答
3

这样做,在创建弹出监视器后,它的“关闭”状态属性在一段时间内。但是这是在父文档中添加的:

var pop = window.open("page.html", "popup",
            "width=800,height=500,scrollbars=0,title='popup'");
    pop.focus();

    var monitor = setInterval(function() {

        if (pop.closed) {
            document.location.reaload()
        }

    }, 1000);
于 2012-07-09T15:53:12.910 回答
2

尝试将此 javascript 代码放在您的弹出窗口中:

window.onunload = function(){
  window.opener.location.reload();
};

/ onunload 事件将在您关闭弹出窗口时触发,window.opener.location.reload() 将重新加载源(父)窗口。/

于 2012-12-04T06:52:13.877 回答
1

在弹出关闭功能的点击事件上尝试...

window.opener.location.reload(true);
于 2013-08-30T06:37:15.000 回答
0

window.open如果使用该功能弹出一个新窗口,这段代码也可以工作。

setTimeout(function () { window.opener.location.reload(true); window.close();}, 3000);
于 2016-06-08T05:42:41.063 回答
0

将此脚本放在弹出窗口的标题中:

<script type='text/javascript'>
window.onunload = function(){
window.opener.location.reload();}
</script>

当您关闭弹出窗口时,这将重新加载父窗口。

于 2016-08-24T20:42:53.607 回答