Coldfusion 注释和 IE 条件注释

Coldfusion comments and IE conditional comments

您是否在 .cfml 文件中使用两个(HTML 注释)或三个(ColdFusion 注释)破折号作为内联 IE 条件语句?

示例:

<!--[if lt IE 9]>
   <script>..do something..</script>
<![endif]-->

我很确定代码是相同的,无论它是在 HTML 文件还是 CFML 文件中。任何人都可以验证吗?谢谢。

Coldfusion 注释(3 个破折号)将不会包含在发送到浏览器的输出中。所以你必须使用常规 html 评论(2 个破折号)。