본문 바로가기

닷컴's_열공/jQueryJavaScript/Ajax

JSTL에서 choose when otherwise (if else를 이렇게...)

JSTL의 if else는
 <c;choose>
    <c;when test="${자바에서 받어온 값}">
      넣고 싶은값
    </c;when>
    <c;when test="${자바에서 받어온 값}">
      넣고 싶은값                           ==>if else
    </c;when>
    <c;otherwise>
       넣고 싶은값      ===else
    </c;otherwise>
</c;choose>

JSTL의 if 문은
  
   <c;if test="${받어온값=='a' or 받어온값=='b'}>
    
      넣고 싶은값
 
   </c;if>