1

我将实现从 2.1.3 切换到 2.1.12 mojarry。但现在我可以在任何 IE Explorer 中看到 CSS 开关注释:

    <!--[if lt IE 7]> <div style=' clear: both; text-align:center; padding:0 0 0 0px; position:         relative;'> <a href="http://www.microsoft.com/windows/internet-explorer/default.aspx?ocid=ie6_countdown_bannercode"><img  src="http://storage.ie6countdown.com/assets/100/../resources/images/banners/warning_bar_0000_us.jpg" border="0" height="42" width="820" alt="You are using an outdated browser. For a faster, safer browsing experience, upgrade for free today. /></a> </div> <![endif]--> <!--[if lt IE 9]> <script type="text/javascript" src="js/html5.js"></script> <![endif]--> 

现在可见,而不是渲染它。意味着,在我的源代码中,字符用 lt 和 gt 进行转义。这来自 api 更改。有人有同样的经历吗?谢谢 !

4

1 回答 1

1

您可以使用<h:outputText escape="false">它以您想要的方式呈现它:

<h:outputText value="&lt;!--[if lt IE 7]&gt;&lt;div&gt;...&lt;/div&gt;&lt;![endif]--&gt;" escape="false" />

或者你可以使用OmniFaces <o:conditionalComment>来让它不那么可怕:

<o:conditionalComment if="lt IE 7">
    <div>...</div>
</o:conditionalComment>
于 2012-10-06T23:59:00.197 回答