Window.close 在 Google-chrome-frame 中不起作用

发布于 2024-09-11 15:31:55 字数 536 浏览 5 评论 0原文

我正在使用 Google Chrome Frame 使页面在 IE 中呈现,就像在 Chrome 中一样。

该页面通过 window.open() 打开另一个页面,该页面没有为 GCF 设置任何内容,但由于它是从一个页面打开的,所以它也会自动设置。

我在页面上有这个,所以一旦用户提交它包含的表单,它就会自动关闭:

<script type="text/javascript">
<?php
if($_POST['submit'])
{
    // ... Process

    ?>
    window.opener.location.reload(true);
    window.close();
    <?php
}
?>
</script>

它在常规 Chrome 中工作,但在使用 GCF 的 IE 中不会关闭窗口。此外,打开时窗口大小也没有设置正确(在 Chrome 中)。

有什么想法吗?

I am using Google Chrome Frame to make a page render in IE as if it would in Chrome.

The page opens another page via window.open() that page has nothing set for GCF but since it is opened from a page that is, it automatically is too.

I have this on the page so it automatically closes once the user submits the form it contains:

<script type="text/javascript">
<?php
if($_POST['submit'])
{
    // ... Process

    ?>
    window.opener.location.reload(true);
    window.close();
    <?php
}
?>
</script>

It works in regular Chrome but the window is not closes in IE using GCF. Also the windows size isn't being set right when opened either (is in Chrome).

Any ideas?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

彼岸花似海 2024-09-18 15:31:55

我已经有一段时间没有这样做了,但是尝试一下这个

    window.opener = null;
    window.close();

编辑

,这应该可以在 chrome 中工作

    window.open('', '_self', '');
    window.close();

It's been a while since I've done this, but try this

    window.opener = null;
    window.close();

EDIT

this should work in chrome

    window.open('', '_self', '');
    window.close();
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文