我有以下查询参数:
http://localhost:8085/myPage?selectListId=2
我已经从我的 GET 方法中的查询字符串中剥离了“selectListId”参数,我想将下拉列表中的选定项目设置为该索引值。
我正在使用引导程序,所以不确定这是否重要。该列表由我从 spring mvc3 控制器传入的 viewModel 填充。
<form class="form-horizontal" action="myController/indexSubmit" method="post">
<select name="selectList" class="form-control" placeholder=".input-medium" height>
<c:forEach items="${viewModel.getlistitems()}" var="item" varStatus="count">
<option value="${count.index}">${item }</option>
</c:forEach>
</select>
<button type="submit" class="btn btn-primary btn-medium">Submit</button>
</form>
我怎样才能设置这个值(最好不要使用javascript)?谢谢!