在JSP的EL表示式中比較兩個字串是否相等時,可以使用eq
。
<select id="department" name="department">
<c:forEach items="${departmentList}" var="department">
<option value="${department.code}" <c:if test="${employee.department eq department.code}">selected</c:if>>
${department.dscr}
</option>
</c:forEach>
</select>
若是不相等,則使用ne
。
沒有留言:
張貼留言