小编典典

如何在 JSTL 中使用 if-else 选项

all

JSTL 中是否有可用的 if-else 标签?


阅读 71

收藏
2022-04-04

共1个答案

小编典典

是的,但它很笨重,例如

<c:choose>
  <c:when test="${condition1}">
    ...
  </c:when>
  <c:when test="${condition2}">
    ...
  </c:when>
  <c:otherwise>
    ...
  </c:otherwise>
</c:choose>
2022-04-04