xmlStudy6-XSL

1. <xsl:template match="/">
match="/" 属性则把此模板与 XML 源文档的根相联系。
2.
xsl:value-of
xsl:for-each
xsl:sort
xsl:if
<xsl:choose>
  <xsl:when test="expression">
    ... 输出 ...
  </xsl:when>
  <xsl:otherwise>
    ... 输出 ....
  </xsl:otherwise>
</xsl:choose>
xsl:apply-templates>

你可能感兴趣的:(xml,XSL)