0

我正在从此处实现页面底部的示例,并将脚本更改为:

echo("<script> window.open('" . $dialog_url . "');</script>");

代替:

echo("<script> top.location.href='" . $dialog_url . "'</script>");

这样登录就会在新的弹出窗口中打开。如何告诉弹出窗口重定向父页面?现在重定向发生在子页面而不是父页面中。

4

1 回答 1

1

使用此代码重定向父窗口

<script type="text/javascript">
window.opener.location = 'your url'; window.close();
</script>  

此代码应在您的弹出窗口中使用。
祝你好运。

于 2012-07-31T18:02:13.290 回答