JSTLでif-elseオプションを使用する方法 質問する

JSTLでif-elseオプションを使用する方法 質問する

JSTL で使用できる if-else タグはありますか?

ベストアンサー1

はい、でもすごく扱いにくいです。例えば

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

おすすめ記事