spring为表单添加默认值:select

时间:2010-05-04 14:54:03

标签: spring spring-mvc

我正在开发一个spring应用程序,现在我已经使用以下命令向我的一个jsp页面添加了一个下拉列表:

<form:select multiple="single" path="users[y.count-1].X" items="${Y}" itemValue="id" itemLabel="name"/>

现在我想添加默认值“Nothing selected”,但我似乎无法找到如何做到这一点。 我试过了:

<form:select multiple="single" path="users[y.count-1].X" items="${Y}" itemValue="id" itemLabel="name">
   <form:option value="Nothing selected" />
</form:select>

但我的下拉列表中未显示“未选择任何内容”。

2 个答案:

答案 0 :(得分:18)

你应该能够做到

<form:select multiple="single" path="users[y.count-1].X" >
   <form:option value="Nothing selected" />
   <form:options items="${Y}"  itemValue="id" itemLabel="name" />
</form:select>

答案 1 :(得分:1)

只需在选项前添加此行:

<form:option selected="true" value="..." />