『壹』 在jsP中<c:if>中有沒有向else的東西可以用呀
<c:choose>
<c:when test=""> 如果
</c:when>
<c:otherwise> 否則
</c:otherwise>
</c:choose>
這樣也就有if else 的效果
『貳』 jsp中如何用jstl實現if(){}else if(){}else{}這種形式的判斷
具體做法是:
<c:choose>
<c:when test="${條件}">
情況1:
</c:when>
<c:when test="${條件}">
情況2:
</c:when>
<c:otherwise>
否則。。。。。
</c:otherwise>
</c:choose>
所以實現了內這種形式的判斷。