JQuery select 编程时选中原有的值
Posted 日日新
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了JQuery select 编程时选中原有的值相关的知识,希望对你有一定的参考价值。
js 此为核心代码
$(document).ready(function(){
$("#carTypeId").attr("value",‘${carInfo.carTypeId}‘); //后台传递的值
})
<tr>
<th width="20%">车辆种类名称: </th>
<td>
<%-- <input type="text" id="carTypeId" name="carTypeId" value="${carInfo.carTypeId}" class="inputText" validate="{required:false,number:true,maxIntLen:10}" />
--%>
<select name="carTypeId" id ="carTypeId" class="select panel-search-inputText">
<option value="">--选择--</option>
<c:forEach items="${listCarType}" var="keyword" varStatus="id">
<option value="${keyword.id}" <c:if test="${keyword.id} == ${carInfo.carTypeId}">selected</c:if>> ${keyword.typeName} </option>
</c:forEach>
</select>
</td>
java 代码
List<CarType> listCarType=carTypeService.getAll();
return getAutoView().addObject("carInfo",carInfo !=null?carInfo:null)
.addObject("listCarType", listCarType)
以上是关于JQuery select 编程时选中原有的值的主要内容,如果未能解决你的问题,请参考以下文章
以编程方式添加新的 jquery-select2-4 选项并重置搜索字段?
如何以编程方式在 select2 多选下拉列表中添加其他选择而不会丢失现有的选定项目