首页 > 代码库 > jstl下拉列表遍历集合

jstl下拉列表遍历集合

关键字:forEach,items,var
<select id="oriLoanerIdType" class="form-control need" name="oriLoanerIdType">
<option value="">请选择</option>
<c:forEach items="${IDtypeList}" var="IDtype">
<option value="http://www.mamicode.com/${IDtype.configValue}"
<c:if test="${sellHouse.oriLoanerIdType eq IDtype.configValue}">selected</c:if>>${IDtype.ext1}</option>
</c:forEach>
</select>

jstl下拉列表遍历集合