0
<xsl:variable name="targetReceiverService">
        <EMP_EMPLOC_MAL curr="4.0">MAL</EMP_EMPLOC_MAL>
        <EMP_EMPLOC_SIN curr="1.6">SIN</EMP_EMPLOC_SIN>
        <EMP_EMPLOC_CHN curr="7.8">CHN</EMP_EMPLOC_CHN>
        <DEFAULT curr="1.0">NONE</DEFAULT>
    </xsl:variable>

    <xsl:variable name="targetCountryCode" select="$targetReceiverService/*[name() = $ReceiverService] | $targetReceiverService/DEFAULT"/>
<xsl:value-of select="$targetCountryCode "/>

为什么 $targetCountryCode 的值显示只是 MAL 但不包括 NONE 因为“|” 意思是

4

1 回答 1

0

xsl:value-of 只显示集合中第一个节点的值。(至少对于 XSL 1)

您可能可以显示所有这些

<xsl:for-each select="$targetCountryCode">
  <xsl:value-of select="."/>
</xsl:for-each>
于 2012-09-20T18:45:40.147 回答