无法为 XSLT 变量重新赋值,或者我可以
<xsl:for-each
有条件地退出
我的 XML
<R>
<A id="a">
<S id="a111">1</S>
<S id="a222">2</S>
<S id="a333">3
<S id="a3331">3.1</S>
<S id="a3332">3.2</S>
<S id="a3333">3.3</S>
</S>
<S id="a444">4</S>
<S id="a555">5</S>
<S id="a666">6</S>
</A>
<A id="x">
<S id="x111">1</S>
<S id="x222">2</S>
<S id="x333">3
<S id="x3331">3.1</S>
<S id="x3332">3.2</S>
<S id="x3333">3.3</S>
</S>
<S id="x444">4</S>
<S id="x555">5</S>
<S id="x666">6</S>
</A>
</R>
我的 XSLT
<select id ="S" name="SList">
<option>
<xsl:attribute name="value"></xsl:attribute> Please Select S
</option>
<xsl:for-each select="A[id='x']//S">
<xsl:if test="'x3333'= @id">
<xsl:variable name="currentS" select="true()"/>
</xsl:if>
<xsl:if test="'x3333'!= @id">
<xsl:variable name="currentS" select="false()"/>
</xsl:if>
<xsl:if test="@currentS = false()">
<option>
<xsl:if test="@id = 'x3333'">
<xsl:attribute name="selected">selected</xsl:attribute>
</xsl:if>
<xsl:attribute name="value">
<xsl:value-of select="@id"/>
</xsl:attribute>
<xsl:value-of select="Text"/>
</option>
</xsl:if>
</xsl:for-each>
我正在尝试创建一个下拉列表,我需要S
在列表中包含项目。我正在传递当前位置(S
在本例中为当前位置x3333
)和当前 id A
。我只想获取S
最新A
元素中的元素列表。
在这个例子中,由于我当前S
的 isx3333
和 id of A
isx
我只需要x111
, x222
, x333
, x3331
,x3332
就可以在列表中。这意味着我需要消除这些
<S id="x444">4</S>,
<S id="x555">5</S>,
<S id="x666">6</S>, nodes
从这段代码<xsl:for-each select="A[id='x']//S">
我正在获取S
元素列表A
whereid='x'
有人可以建议我一个解决方案吗?