<c:otherwise>
標籤體
</c:otherwise>
<%@page import="java.util.*"%> <%@taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%> <%Random rnd = new Random();%> <c:set var="luck"> <%=rnd.nextInt(10)%> </c:set> <c:choose> <c:when test="${luck==6}">恭喜你,中了一等獎!</c:when> <c:when test="${day==7}">恭喜你,中了二等獎!</c:when> <c:otherwise>謝謝您的參與!</c:otherwise> </c:choose>執行本範例,當隨機生成數位 6 時,頁面顯示結果如下: