|
在xsl中可使用 来代替平时在html中使用的 表示的空格
如 <xsl:element name="a"> <xsl:attribute name="href">http://www.cnscn.org</xsl:attribute> <xsl:attribute name="class">list1</xsl:attribute> <xsl:attribute name="target"><xsl:value-of select="/BLOG/STYLE_TARGET" /></xsl:attribute> <font style="font-size:10pt" color="#02368D"><b>Unix/Linux/C/C++/Java </b></font> </xsl:element>
  
<xsl:element name="a">
<xsl:attribute name="href">http://www.cnscn.org</xsl:attribute>
<xsl:attribute name="class">list1</xsl:attribute>
<xsl:attribute name="target"><xsl:value-of select="/BLOG/STYLE_TARGET" /></xsl:attribute>
<font style="font-size:10pt" color="#02368D"><b>Unix/Linux/C/C++/Java </b></font>
</xsl:element>
|