JSTL 中是否有可用的 if-else 标签?
是的,但它很笨重,例如
<c:choose> <c:when test="${condition1}"> ... </c:when> <c:when test="${condition2}"> ... </c:when> <c:otherwise> ... </c:otherwise> </c:choose>