taglib : core/functions

easyliving·2023년 2월 7일
0

FRONT_END (JAVA_SCRIPT)

목록 보기
28/55

taglib:core/functions

	functions-contains
	checked 속성 넣어주기
    
    
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>
<%@ taglib uri="http://java.sun.com/jsp/jstl/functions" prefix="fn"%>



<input type="radio" name="gender" id="male" value="male" 
								<c:if test="${mvo.gender=='male'}">checked</c:if>/>
                               
                               
<input type="checkbox" name="hobby" id="book" value="book" 
<c:if test="${fn:contains(mvo.hobby,'book') }">checked</c:if> />
									<label for="book">독서</label>                                
profile
가끔져요

0개의 댓글