我不能從XSLT閱讀以下屬性值(「的AttributeValue」),我是用XML,XLST值不填充
< ----這裏做錯什麼我不能粘貼XML格式的代碼---它說格式不正確,但它是 - >在下面的評論中添加XML和XSLT
<MonthlyReport>
<lstAttributes>
<Attributes>
<AttributeName>Stories</AttributeName>
<AttributeValue>2000</AttributeValue>
</Attributes>
</lstAttributes>
</MonthlyReport>
<xsl:template match="/MonthlyReport">
<html>
<table>
<tr>
<td>
<xsl:choose>
<xsl:when test="lstAttributes/Attributes/AttributeName='Stories'">
<xsl:value-of select="AttributeValue"/>
</xsl:when>
</xsl:choose>
</td>
</tr>
</table>
</html>
</xsl:template>
如果它的屬性和當前範圍中需要'@ AttributeValue'。請爲您的問題提供更多背景。 – StuartLC
添加XML和XSLT,如何讓故事的AttributeValue元素屬性值name元素 –