XPath-选择XML-Tag的属性时出现问题

时间:2010-08-11 06:35:47

标签: xml xpath

我可以对XPath-Expression使用一点帮助。检查下面的代码;如何在显示的位置选择属性“idc”?

<!-- XML-Code -->
<pictGaleList>
    <item>
    </item>

    <dateItem>
        <ImageDate idc="20">
            20/04/2010
        </ImageDate>
    </dateItem>

</pictGaleList>


<!-- XSLT -->

<xsl:template match="pictGaleList">
    <xsl:value-of select="" /> <!-- here I need the value of the attribute "idc" -->
</xsl:template>

3 个答案:

答案 0 :(得分:1)

dateItem/ImageDate/@idc

答案 1 :(得分:1)

dateItem[position() = 1]/ImageDate/@idc

会在pictGaleList

中为您提供第一 ImageDate元素的idc属性的值

答案 2 :(得分:0)

解决了,如果网站不是来自此代码的错误行为。 nvrmnd