1. 程式人生 > >Franciswmf的專欄 http://franciswmf.iteye.com/

Franciswmf的專欄 http://franciswmf.iteye.com/


<c:choose> 和 <c:when> 、 <c:otherwise> 一起實現互斥條件執行,類似於 java 中的 if else.
<c:choose> 一般作為 <c:when> 、 <c:otherwise> 的父標籤。
eg :
<c:choose>
       <c:when test="${row.v_money<10000}">
              初學下海

       </c:when>

       <c:when test="${row.v_money>=10000&&row.v_money<20000}">
              身手小試

       </c:when>

       <c:otherwise>
              商業能手

       </c:otherwise>

</c:choose>