使用 XSLT 创建条件注释?

发布于 2024-07-18 05:23:31 字数 300 浏览 8 评论 0原文

我想在 XSLT 中创建条件注释

但是,当我在 中使用此

<!-- [If IE7] [endif] -->

命令时,XSLT 会在渲染时将其从输出中删除。

有没有办法在 XSLT 中创建条件注释?

I want to create conditional comments in XSLT.

But when I use this:

<!-- [If IE7] [endif] -->

in an <xsl:comment>, XSLT removes it from the output when it is rendered.

Is there any way to create conditional comments in XSLT?

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

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

发布评论

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

评论(3

温柔一刀 2024-07-25 05:23:31

只需使用 标签并将您的评论包含在该标签内即可。

例如:

<xsl:if test="@id = '1'">
  <xsl:comment>
    <![CDATA[[if IE]><![endif]]]>
  </xsl:comment>
</xsl:if>

Taming Your Multiple IE Standalones 是关于这个主题的一篇很棒的文章。

Simply use an <xsl:comment> tag and include your comment within the tag.

For example:

<xsl:if test="@id = '1'">
  <xsl:comment>
    <![CDATA[[if IE]><![endif]]]>
  </xsl:comment>
</xsl:if>

Taming Your Multiple IE Standalones is a great article on this subject.

‖放下 2024-07-25 05:23:31

上述解决方案假设条件注释内的内容不包含任何 XSLT 参数。 在下面的示例中,我们有一个参数 $DATA_ROOT_PATH,应该对其进行处理,以便为我们提供 CSS 文件的正确位置。 在这种情况下, 不适合。 我们必须使用 并禁用输出转义。

仅当我们使用 IE7 时,此处的示例才会包含 CSS 文件。

<xsl:text disable-output-escaping="yes"><!--[if IE 7]></xsl:text>
  <link rel="stylesheet" type="text/css" href="{$DATA_ROOT_PATH}/resources/css/ie7.css" media="screen"/>
<xsl:text disable-output-escaping="yes"><![endif]--></xsl:text>

如果 $DATA_ROOT_PATH = /example,代码示例将生成如下输出:

<!--[if IE 7]>
  <link rel="stylesheet" type="text/css"
        href="/example/resources/css/ie7.css"
        media="screen" />
<![endif]-->

The above solution assumes that the content inside the conditional comment does not contain any XSLT parameters. In the example below we're having a parameter $DATA_ROOT_PATH that should be processed to give us the correct location of a CSS file. In this case <xsl:comment/> is not suitable. We must use <xsl:text/> and disable the output escaping.

The example here will include the CSS file only if we're using IE7.

<xsl:text disable-output-escaping="yes"><!--[if IE 7]></xsl:text>
  <link rel="stylesheet" type="text/css" href="{$DATA_ROOT_PATH}/resources/css/ie7.css" media="screen"/>
<xsl:text disable-output-escaping="yes"><![endif]--></xsl:text>

The code example would generate output like so if $DATA_ROOT_PATH = /example:

<!--[if IE 7]>
  <link rel="stylesheet" type="text/css"
        href="/example/resources/css/ie7.css"
        media="screen" />
<![endif]-->
方觉久 2024-07-25 05:23:31

这是我能够应用 ie 样式表的唯一方法:

    <xsl:comment>[if IE]>
      <link rel="stylesheet" type="text/css" href="ie.css" />
      <![endif]</xsl:comment>

我必须确保我的文本和 xsl:comment 开始/结束标记之间没有空格

This was the only way I was able to get my ie stylesheet to be applied:

    <xsl:comment>[if IE]>
      <link rel="stylesheet" type="text/css" href="ie.css" />
      <![endif]</xsl:comment>

I had to make sure there is no space between my text and the xsl:comment opening/closing tags

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