在我的第二次xsl:模板匹配中,我該如何測試匹配模式?例如,如果匹配模式是標題,我想輸出不同的值?如何在xsl:apply-template中測試匹配?
<xsl:template match="secondary-content">
<div class="secondary">
<xsl:apply-templates select="title" />
<xsl:apply-templates select="block/content | content" />
</div>
</xsl:template>
<xsl:template match="title|content|block/content">
<xsl:copy-of select="node()" />
</xsl:template>
問得好,+1。請參閱我的答案,以獲得簡單,簡短並且不包含任何明確的邏輯XSLT指令的解決方案。 –