■ JSTL core 예제 1
페이지 정보
작성자 관리자 작성일 21-07-15 20:05 조회 755 댓글 0본문
<%@ 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>
댓글목록 0
등록된 댓글이 없습니다.