select下拉框多选 和回显
时间:2015-11-27 19:52:04
收藏:0
阅读:1396
<select multiple="true" name="cogCondition" style="width:100%;"> <c:forEach var="mate" items="${fns:getDictList(‘rdqk‘)}"> <option <c:if test="${fn:contains(projectRecommend.cogCondition,mate.value ) }">selected="selected"</c:if> name="cogCondition" value="${mate.value }"/>${mate.label} </c:forEach> </select>
原文:http://www.cnblogs.com/chuanqimessi/p/5001389.html
评论(0)