如果我稱之爲XSLT模板,像這樣:XPath軸是否遵守Xslt排序?
<xsl:template match="hist:Steps">
<dgml:Links>
<xsl:apply-templates select="hist:Step">
<xsl:sort data-type="text" select="hist:End" order="ascending"/>
</xsl:apply-templates>
</dgml:Links>
</xsl:template>
將在模板中的following-sibling
軸下方詢問文檔順序或排序順序?
<xsl:template match="hist:Step">
<xsl:if test="following-sibling::hist:Step">
<dgml:Link>
<xsl:attribute name="Source">
<xsl:value-of select="hist:Workstation"/>
</xsl:attribute>
<xsl:attribute name="Target">
<xsl:value-of select="following-sibling::hist:Step/hist:Workstation"/>
</xsl:attribute>
</dgml:Link>
</xsl:if>
</xsl:template>
+1好的解決方案。 – 2011-03-05 22:41:06