-1
我有xml文件。我不創建內部鏈接xslt 我有xml文件。我不在xslt中創建內部鏈接如何正確地在xslt文件中寫入內部鏈接?
<title id="introduction"> Intro </title>
<link linkend="introduction"> click here </link>
其中是xsl文件中的錯誤?
<xsl:template match="title">
<h2>
<xsl:value-of select="."/>
</h2>
</xsl:template>
<xsl:template match="link">
<a href="#{@linkend}">
<xsl:value-of select="."/>
<xsl:apply-templates/>
</a>
</xsl:template>
更換您的「稱號」模板是否有可能表現出更多的XSLT的一個位(例如, ,你有一個匹配'title'元素的模板),並且你已經標記了這個「xsl-fo」,但是看起來你實際上在輸出HTML嗎?這是正確的嗎?謝謝! –
添加了「title」模板和沒有標記「xsl-fo」 – user3476386