如何在 IE 8 和 IE 7 的 body onload 事件中关闭窗口?

发布于 2024-12-08 13:13:03 字数 200 浏览 0 评论 0原文

我使用这段代码 window.onload=function Print(){window.open(); window.close()} 在 YouPrint.aspx。它在 IE 9 上工作正常,但在 IE 8 和 IE 7 中不起作用。它显示一个 JavaScript 错误,如“堆栈流错误”。为什么?如果您有解决方案,请告诉我解决此问题的方法。请帮我。

I use this code window.onload=function Print(){window.open(); window.close()} at YouPrint.aspx. It working fine at IE 9 but it does not work in IE 8 and IE 7. It shows a JavaScript error like this "Stack Flow error". Why? If you have solution, please show me the way to solve this problem. Please Help me.

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

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

发布评论

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

评论(1

暗藏城府 2024-12-15 13:13:03

使用以下测试文件在 IE7 / IE8 中工作正常:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"  http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html>
<head>
<body onload="window.print(); window.close();">

    <span>Test</span>

</body>
</html>

您使用什么文档类型?我已经严格测试过它并且也有效。
更多信息请...

Works ok for me in IE7 / IE8 using the following test file:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"  http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html>
<head>
<body onload="window.print(); window.close();">

    <span>Test</span>

</body>
</html>

What doc type are you using? I've tested it with strict and that works too.
More info please...

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