<c:choose>
<c:when>
業務邏輯
</c:when>
……<!--多個<c:when>標籤-->
<c:otherwise>
業務邏輯
</c:otherwise>
</c:choose>
<%@taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%> <c:set var="day"> //獲取當前日期的星期數 <%=new java.util.Date().getDay()%> </c:set> <c:choose> <c:when test="${day==6}">今天是星期六,可以去逛街了!</c:when> <c:when test="${day==0}">今天是星期日,可以在家休息了!</c:when> <c:otherwise>今天是工作日,努力工作吧!</c:otherwise> </c:choose>當在星期一執行上面的程式碼時,執行結果如下: