码迷,mamicode.com
首页 > Web开发 > 详细

JQuery select 编程时选中原有的值

时间:2018-12-25 10:12:57      阅读:224      评论:0      收藏:0      [点我收藏+]

标签:get   var   fun   als   stat   add   tle   java   car   

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 编程时选中原有的值

标签:get   var   fun   als   stat   add   tle   java   car   

原文地址:https://www.cnblogs.com/1880su/p/10172159.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!