1

我正在尝试使用我的数据库中的汽车类型填充下拉列表,我已经对另一个 jsp 页面上的列表执行此操作,但是现在当我想对下拉列表执行相同操作时,它不起作用。我可以看到它在数据库上的表上移动,因为在我的下拉列表中,我得到了 3 个空格。(我的桌子目前包含 3 辆车)。

<jsp:useBean id="vs" scope="request" type="java.util.List" />
.
.
.
<tr>
    <td style="color:red; font-weight:bold">Vehicle:  </td
      <td> <select name= "vehicles" style="width: 100px">
           <% 
              Iterator it = vs.iterator();
              while (it.hasNext()) {
                   Vehicles vehicles = (Vehicles) it.next();
            %>
            <option value= <%=vehicles.getId()%> ${vehicles.getMake()} </option>
            <% } %>
            </select>         
      </td>
</tr>
.
.
.

提前致谢!

4

1 回答 1

1

replace

 <option value= <%=vehicles.getId()%> ${vehicles.getMake()} </option>

with

<option value= <%=vehicles.getId()%>><%={vehicles.getMake()%> </option>
于 2013-05-06T18:20:03.080 回答