상세 컨텐츠

본문 제목

JSTL IF문 (if, choose)

JavaScript & HTML/JSTL

by husks 2016. 7. 6. 15:35

본문

반응형


JSTL에서 IF문을 사용하는 방법입니다.


IF ELSE 는 지원하지 않아서 choose를 사용해야 합니다.


if 문

<c:if test="${billPaymentResult.holidayYn eq 'Y'}">
	<font color="red">${billPaymentResult.week}</font>
</c:if>

if else 문

<c:choose>
	<c:when test="${billPaymentResult.holidayYn eq 'Y'}">
		<font color="red">${billPaymentResult.week}</font>
	</c:when>
	<c:otherwise>
		${billPaymentResult.week}
	</c:otherwise> 
</c:choose>



비교기호는 아래와 같습니다.


eq (==) : 동일하다면 참

ne (!=) : 다르다면 참

empty (==null) : 값이 비어있다면 참

not empty (!=null) : 값이 있다면 참

반응형

관련글 더보기

댓글 영역