Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我系统上的 IE8 通常会按预期打印页面。但是对于我正在开发的应用程序的一个特定页面,当我选择打印或打印预览时,IE8 会无限期挂起(这在 Firefox 上不会发生)。
特定网页的哪些特性会导致 IE8 中出现此类问题?
虽然我无法弄清楚 IE8 挂起的原因,但我很确定这与渲染文档的复杂性有关。
因此,作为一种解决方法,我在打印时通过 css 排除了文档的某些部分:
<style type="text/css" media="print"> #excludeComplexDiv {display:none;visibility:hidden;} </style>
所以现在 IE8 不再在给出打印命令时挂起!