2010-08-11 34 views
0

我可以使用XPath-Expression的一些幫助。檢查下面的代碼;如何在顯示的位置選擇屬性「idc」?XPath-選擇XML-Tag屬性時的問題

<!-- 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> 

回答

1

dateItem/ImageDate/@idc

0

解決,如果網站不是來自此代碼的錯誤行爲。 nvrmnd

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

會給你裏面pictGaleList

ImageDate元素的IDC屬性的值