<?xml-stylesheet type="text/xsl" herf="1.xsl"?>
<xsl:template match="name"></xsl:template>
是xsl的模板使用第一个模板采用的一定是/<xsl:apply-templates select="匹配模式"/>
这个匹配模式可以将所有的匹配元素匹配出来<xsl:value-of select="匹配模式"/>
进行对比,value是匹配一个元素,而templates是匹配多个元素<xsl:for-each select="pattern"></xsl:for-each>
类似于for循环<xsl:sort select="元素名" order="asceding|descending" case_order="upper-first|lower_first"/>
<xsl:apply-templates select="roster/student">
<xsL:sort select="score" order="ascending"/>
<xsl:apply-templates>
<xsl:value-of select="./@ID"/>
./表示当前模板指到的路径<xsl:template match="(person|name)">
原文:https://www.cnblogs.com/ju-ruo/p/14799575.html