IE8 打印时挂起

发布于 2024-09-11 22:37:41 字数 134 浏览 5 评论 0原文

我的系统上的 IE8 通常会按预期打印一页。 但对于我正在开发的应用程序上的一个特定页面,当我选择“打印”或“打印预览”时,IE8 会无限期挂起(这在 Firefox 上不会发生)。

特定网页的哪些特性可能会导致 IE8 中出现此类问题?

IE8 on my system generally prints a page as expected.
But for one particular page on the application i am developing, when i choose Print or Print Preview, IE8 hangs indefinitely (This doesn't happen on Firefox).

What peculiarity of a particular web page could cause such an issue in IE8?

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

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

发布评论

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

评论(1

未蓝澄海的烟 2024-09-18 22:37:41

虽然我无法弄清楚 IE8 挂起的原因,但我很确定它与渲染文档的复杂性有关。

因此,作为一种解决方法,我在打印时通过 css 排除了文档的某些部分:

<style type="text/css" media="print">
    #excludeComplexDiv {display:none;visibility:hidden;}
</style>

所以现在 IE8 不再在发出打印命令时挂起!

Though I have not been able to figure out why IE8 hangs, I am pretty sure it has something to do with the complexity of the rendered document.

Therefore, as a work-around, I excluded certain parts of the document through css when it is printing:

<style type="text/css" media="print">
    #excludeComplexDiv {display:none;visibility:hidden;}
</style>

So now IE8 no longer hangs upon giving the print command!

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