1
下面是我的XML代碼:如何通過<xsl:value-of>標籤進行正確選擇?
<abbr>
<title>world health organization</title>who</abbr>
was founded in 1948.
在上面的代碼中,我想XSLT輸出:
<abbr title="world health organisation">who<abbr>
我寫了下面的XSLT代碼:
<xsl:template match ="abbr">
<abbr title="<xsl:value-of select ="title"/>">
<xsl:value-of select ="."/></abbr>
</xsl:template>
和我得到:
<abbr title="world health organization">
world health organizationwho</abbr>
我哪裏出錯了?
的
<xsl:value-of select"."/>
輸出
world health organisationwho
(世界衛生組織+誰)
現在,我不想在第一部分。 我該如何做到這一點?
謝謝...它工作:) – 2013-03-14 07:44:39