jstl下拉列表遍历集合
Posted 黄小易
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了jstl下拉列表遍历集合相关的知识,希望对你有一定的参考价值。
关键字:forEach,items,var
<select id="oriLoanerIdType" class="form-control need" name="oriLoanerIdType">
<option value="">请选择</option>
<c:forEach items="${IDtypeList}" var="IDtype">
<option value="${IDtype.configValue}"
<c:if test="${sellHouse.oriLoanerIdType eq IDtype.configValue}">selected</c:if>>${IDtype.ext1}</option>
</c:forEach>
</select>
以上是关于jstl下拉列表遍历集合的主要内容,如果未能解决你的问题,请参考以下文章