Window.close 在 Google-chrome-frame 中不起作用
我正在使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我已经有一段时间没有这样做了,但是尝试一下这个
编辑
,这应该可以在 chrome 中工作
It's been a while since I've done this, but try this
EDIT
this should work in chrome