标题听起来比实际问题要复杂得多:我一直试图通过在 stackoverflow 和其他地方找到的点点滴滴把事情放在一起,但我不太明白。
任务:我有一个项目列表,我想遍历它,对于每次迭代,我想创建一个下拉列表,然后默认情况下根据当前整体索引选择项目。
这个例子会很清楚。这是 XML:
<?xml version="1.0" encoding="UTF-8"?>
<Plants>
<Plant PlantId="13" PlantType="Tree"/>
<Plant PlantId="25" PlantType="Flower"/>
<Plant PlantId="70" PlantType="Shrub"/>
</Plants>
然后我有一些 XSL:
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
<xsl:output method="html" indent="yes" encoding="UTF-8" omit-xml-declaration="yes"/>
<xsl:template match="/">
<xsl:param name="listIdx" select="0">
</xsl:param>
<table>
<thead>
<tr>
<td>PlantType</td>
</tr>
</thead>
<tbody>
<xsl:for-each select="Plants/Plant">
<tr>
<td>
<select>
<xsl:for-each select="/Plants/Plant">
<xsl:element name="option">
<xsl:attribute name="value">
<xsl:value-of select="@PlantId"/>
</xsl:attribute>
<xsl:if test="count(.) = 2">
<xsl:attribute name="selected">selected</xsl:attribute>
</xsl:if>
<xsl:value-of select="@PlantType"/>
</xsl:element>
</xsl:for-each>
</select>
</td>
</tr>
</xsl:for-each>
</tbody>
</table>
</xsl:template>
</xsl:stylesheet>
我得到的是:
PlantType
Tree [=带有树、花、灌木
的下拉列表] Tree [=带有树、花、灌木的
下拉列表] Tree [=带有树、花、灌木的下拉列表]
我想要的是:
PlantType
Tree [=带有树、花、灌木的下拉列表(预选 idx 1)]
花 [=带有树、花、灌木的下拉列表(预选 idx 2)]
Shrub [=带有树、花、灌木的下拉列表(预选 idx 3)]
我想会有两种方法:1)在外循环中使用listIdx(匹配),然后将内循环中的当前索引与listIdx进行比较。2)动态比较内部列表索引和外部列表索引。如果说明关键组件很容易,我将非常感激!谢谢!