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>
'닷컴's_열공 > jQueryJavaScript/Ajax' 카테고리의 다른 글
JQuery에서 많이 사용하는 유용한 팁 (0) | 2010.11.02 |
---|---|
javascript base64encoding 하는 방법 (0) | 2010.06.26 |
encodeURIComponent 로 문자를 encode한다. (0) | 2010.03.10 |
cursor hand와 pointer (0) | 2010.03.06 |
[JavaScript] iframe에 submit 하기 (0) | 2010.01.12 |