我试图添加这些条件评论:
<!doctype html>
<!--[if lt IE 7 ]> <html class="ie6"> <![endif]-->
<!--[if IE 7 ]> <html class="ie7"> <![endif]-->
<!--[if IE 8 ]> <html class="ie8"> <![endif]-->
<!--[if IE 9 ]> <html class="ie9"> <![endif]-->
<!--[if (gt IE 9)|!(IE)]><!--> <html class=""> <!--<![endif]-->
<head>
到xsl文件:
<xsl:comment>
<![CDATA[[if lt IE 7 ]> <head class="ie6"> <![endif]]]>
<![CDATA[[if IE 7 ]> <head class="ie7"> <![endif]]]>
<![CDATA[[if IE 8 ]> <head class="ie8"> <![endif]]]>
<![CDATA[[if IE 9 ]> <head class="ie9"> <![endif]]]>
<![CDATA[[if (gt IE 9)|!(IE)]><!--> <head class=""> <!--<![endif]]]>
</xsl:comment>
我的xsl语法有问题。有谁能看到它?
答案 0 :(得分:4)
每个条件都需要单独<xsl:comment>
<xsl:comment><![CDATA[[if lt IE 7 ]> <html class="ie6"> <![endif]]]></xsl:comment>
<xsl:comment><![CDATA[[if IE 7 ]> <html class="ie7"> <![endif]]]></xsl:comment>
<xsl:comment><![CDATA[[if IE 8 ]> <html class="ie8"> <![endif]]]></xsl:comment>
<xsl:comment><![CDATA[[if IE 9 ]> <html class="ie9"> <![endif]]]></xsl:comment>
<xsl:comment>[if (gt IE 9)|!(IE)]></xsl:comment>
<html class=""> <xsl:comment><![endif]</xsl:comment>
<!-- rest of the content goes here -->
</html>