IE8 打印时挂起
我的系统上的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
虽然我无法弄清楚 IE8 挂起的原因,但我很确定它与渲染文档的复杂性有关。
因此,作为一种解决方法,我在打印时通过 css 排除了文档的某些部分:
所以现在 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:
So now IE8 no longer hangs upon giving the print command!