Eclipse中的jstl验证错误

时间:2018-08-10 06:32:01

标签: eclipse validation jsp

<c:forEach items="${codeList}" var="code">                                                               
    <option value="${code.dtlCd }" <c:if test="${guide.seminarType eq 
    code.dtlCd}">selected="selected"</c:if>>${code.dtlNm }</option>
</c:forEach>

enter image description here

1 个答案:

答案 0 :(得分:0)

尝试使用EL Expression

<c:forEach items="${codeList}" var="code">                                                               
    <option value="${code.dtlCd }" ${guide.seminarType eq code.dtlCd ? 'selected':''}>
    ${code.dtlNm }
    </option>
</c:forEach>