如果我有以下XML:過濾器的for-each通過XML屬性
<Results>
<Option isDefault="true" value="1">
<DisplayName>
One
</DisplayName>
</Option>
<Option value="2">
<DisplayName>
Two
</DisplayName>
</Option>
<Option value="3">
<DisplayName>
Three
</DisplayName>
</Option>
</Results>
我怎樣才能訪問它有isDefault="true"
的Option
的value
?
到目前爲止,我曾嘗試:
<xsl:variable name="varName">
<xsl:for-each select="Results/Option[isDefault='true']">
<xsl:value-of select="@value" />
</xsl:for-each>
</xsl:variable>