今天写的一个项目中,一个修改的小功能需要用到回显,不过以前没有写过选择框的回显,最终试了好方法,才终于成功。
第一种:option显示的值来自后台
<select name="customer.cid">
<c:forEach items="${listCustomer }" var="customer">
<!-- 当前联系人所属客户id 和所有的客户id比较,相同选中 -->
<option value="${customer.cid }" <c:if test="${customer.cid == link.customer.cid }">selected</c:if> >${customer.custName }</option>
</c:forEach>
</select>
第二种:option显示的值页面上本来就有
<select name="dc_type">
<option value="记过" ${discipline.dc_type=="记过"?'selected':'