써먹는 웹개발

[Jsp] jstl if문에서 and와 or문 사용하는 방법 본문

웹개발/Java & Jsp

[Jsp] jstl if문에서 and와 or문 사용하는 방법

kmhan 2020. 3. 30. 17:14


728x90
반응형

jstl if문에서 and와 or문 사용하는 방법

 

and

<c:if test="${kmhan.name == 'kmh' && kmhan.nickname == 'kmh'}">...</c:if>

 

or

<c:if test="${kmhan.name == 'kmh' || kmhan.nickname == 'kmh'}">...</c:if>


출처: https://yangyag.tistory.com/112 [Hello Brother!]

728x90
반응형


Comments