Functions
사용법은 아래와 같다.
<%@ taglib prefix="fn" uri="http://java.sun.com/jsp/jstl/functions" %>
<c:if test="${fn:indexOf(menuValue, '|0101')>-1}">
<input type=checkbox nam=menu value="0101" checked>메뉴1
</c:if>
<c:if test="${fn:indexOf(menuValue, '|0101')==-1}">
<input type=checkbox nam=menu value="0101">메뉴1
</c:if>
JSTL을 사용하면서 그나마 편하기는 하지만, 그래도 velocity나 JSP를 이용하는 것보다는
불편한게 사실이다
'JSP > 함수' 카테고리의 다른 글
링크 Link 타겟Target 속성Attribute _blank _self _parent _top (0) | 2015.12.11 |
---|---|
jsp중급_EL,JSTL,커스텀태그 (0) | 2015.11.27 |
JSTL fmt을 이용한 데이터 가공 (0) | 2015.03.18 |
JSTL 에서 excape 문자 치환하기 (0) | 2015.02.03 |
JSTL1.1 설명 및 예제 (0) | 2014.11.17 |
[JAVA] Float형의 소숫점 아래 고정자리 표기방법 (0) | 2014.10.23 |
HTML 기초, <form><textarea> 태그와 <input>속성 password, checkbox (25번째) (0) | 2014.09.16 |
Form - placeholder, autofocus (0) | 2014.09.05 |