■ JSTL core 예제 1
페이지 정보
본문
<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Insert title here</title>
</head>
<body>
<c:if test="${4>3 }">
참이다.
</c:if>
<c:set var="i" value="4" />
<c:if test="${i>3 }">
참이다.
</c:if>
<c:forEach begin="1" end="10">
내용1
</c:forEach>
<c:forEach begin="1" end="10" step="2">
내용2
</c:forEach>
<c:set var="sum" value="0" />
<c:forEach var="j" begin="1" end="10">
<c:set var="sum" value="${sum=sum+j }" />
</c:forEach>
결과 : ${sum }
<c:set var="sum" value="0" />
<c:forEach var="j" begin="1" end="10">
<c:set var="sum" value="${sum+=j }" />
</c:forEach>
결과 : ${sum }
</body>
</html>
- 이전글■ JSTL core 예제 2 21.07.15
- 다음글■ 연습문제 - el_ok.jsp ( param 예제) 21.07.15
댓글목록
등록된 댓글이 없습니다.