我可以使用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>