我想用每個字母的鏈接編寫字母表。所以我使用了模板,但是我不知道如何製作這封信我試過了,但是我有一個正常的錯誤:(十進制表示必須立即在字符引用中遵循&#)。將int轉換爲字符
<xsl:template name="alphabet">
<xsl:param name="iLetter"/>
<xsl:if test="$iLetter < 91">
<a><xsl:attribute name="href">req.html?X_letter=&#<xsl:value-of select="$iLetter"/>;</xsl:attribute>&#<xsl:value-of select="$iLetter"/>;</xsl:attribute></a>
<xsl:call-template name="alphabet">
<xsl:with-param name="iLetter" select="number($iLetter)+1"/>
</xsl:call-template>
</xsl:if>
</xsl:template>
我呼籲這個模板ILKE說:
<xsl:call-template name="alphabet">
<xsl:with-param name="iLetter" select="number(65)"/>
</xsl:call-template>
所以,我想獲得這樣的結果:
A B C D ..... X Y Z
沒有......當然:)
好問題,+1。你是否知道你接受的答案會產生不正確的結果? –
是的,我知道,但我糾正了問題。謝謝你的+1 :) – M07