我可以对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>
答案 0 :(得分:1)
dateItem/ImageDate/@idc
?
答案 1 :(得分:1)
dateItem[position() = 1]/ImageDate/@idc
会在pictGaleList
答案 2 :(得分:0)
解决了,如果网站不是来自此代码的错误行为。 nvrmnd