<%@ page language="java" contentType="text/html; charset=EUC-KR"
pageEncoding="EUC-KR"%>
<%@taglib prefix ="c" uri="http://java.sun.com/jsp/jstl/core" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=EUC-KR">
<title>Insert title here</title>
</head>
<body>
<c:forEach var="a" begin="1" end="10">
${a} <br/>
</c:forEach>
</body>
</html>
1~10까지 나온다
만약에 이치문에 <c:forEach var="a" begin="1" end="10" step="2">
step을 선언하면 step 선언만큼 숫자가 뛴다
지금은 2라고 했으니 1,3,5,7,9 가 나오게 된다.
JSTL forEach을 사용해서 HashMap에 있는 데이터 출력하기 (0) | 2015.03.12 |
---|---|
JSTL forEach문에 items 써서 배열 다출력하기 (0) | 2015.03.12 |
EL JSTL IF문을 이용해 값 비교하기 (0) | 2015.03.12 |
JSTL 써서 셋팅된값 바로 출력하기 (0) | 2015.03.12 |
web.xml 에 있는 context-param 불러오기 (0) | 2015.03.12 |