我认为你需要CDATA
像这样分手......
<xsl:comment><![CDATA[[if gte IE 9]>
<link href="]]><xsl:value-of select="$URL_PREFIX"/><![CDATA[/Static/resources/common/css/redesign/new-ie.css" rel="stylesheet" type="text/css" />
<![endif]]]></xsl:comment>
完整的例子...
XSLT 1.0(适用于任何 XML 输入)
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output indent="yes"/>
<xsl:strip-space elements="*"/>
<xsl:template match="/">
<xsl:variable name="URL_PREFIX" select="'http://foo.com'"/>
<xsl:comment><![CDATA[[if gte IE 9]>
<link href="]]><xsl:value-of select="$URL_PREFIX"/><![CDATA[/Static/resources/common/css/redesign/new-ie.css" rel="stylesheet" type="text/css" />
<![endif]]]></xsl:comment>
</xsl:template>
</xsl:stylesheet>
输出
<!--[if gte IE 9]>
<link href="http://foo.com/Static/resources/common/css/redesign/new-ie.css" rel="stylesheet" type="text/css" />
<![endif]-->