본문 바로가기

JSP, Servlet/JSP, Servlet 기초

[JSP/Servlet] c태그 사용하기 (<c:forEach begin="" end="" step="">)

<c:forEach> begin, end, step 속성
 begin, end 속성에 시작 번호와 끝 번호를 지정하고 step 속성을 이용해서 증가 값을 정할 수 있다.

 

속성  설명 
begin  반복에 사용될 첫 번째 항목의 index 
end  반복에 사용될 마지막 항목의 index 
step  각 반복마다 증가값을 지정함.

 

<%@ page language="java" contentType="text/html; charset=UTF-8"
    pageEncoding="UTF-8"%>
    <%@ taglib uri="http://java.sun.com/jstl/core" prefix="c" %>
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Insert title here</title>
</head>
<body>
<c:forEach var="i" begin="1" end="10">
${i },</c:forEach>
</body>
</html>

 

 

728x90
반응형