AdSense

網頁

2017/11/15

在JSP EL表示式中比較是否相等

在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

沒有留言:

AdSense