组合框和xml

时间:2011-09-21 05:19:22

标签: xml xslt

我在xslt中使用以下代码

设置了一个组合框
<select name="combo">

            <xsl:for-each select="ConfId">
            </xsl:for-each>

          </select>

我希望组合框加载XML文件的ConfId字段中的所有值。上面的代码行是否正确?我无法让组合框显示详细信息。

1 个答案:

答案 0 :(得分:1)

我不确定但是试试这个

<select name="demo">
 <xsl:for-each select="$currentPage/node">
  <option>
   <xsl:attribute name="value">
     <xsl:value-of select="./@id"/>
   </xsl:attribute>
   <xsl:value-of select="./@nodeName"/>
  </option>
 </xsl:for-each>
</select>