這個標籤是通過指令碼嵌入Java實現for
或while
迴圈的一個好的選擇。 <c:forEach>
標籤是一個常用的標籤,使用它來迭代一組物件。 <c:forTokens>
標籤用於將字串分割成令牌,並遍歷每個令牌。
<c:foreach>
標籤具有以下屬性 -
屬性 | 描述 | 必需 | 預設 |
---|---|---|---|
delims |
用作分隔符的字元 | 是 | None |
檔案:c_foreach.jsp -
<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>
<!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=UTF-8">
<title>c:foreach 範例</title>
</head>
<body>
<div style="margin: auto; width: 80%">
<c:forEach var="i" begin="1" end="10">
當前值: <c:out value="${i}" />
<br />
</c:forEach>
</div>
</body>
</html>
執行上面範例程式碼,得到以下輸出結果 -
當前值: 1
當前值: 2
當前值: 3
當前值: 4
當前值: 5
當前值: 6
當前值: 7
當前值: 8
當前值: 9
當前值: 10
c:forTokens 範例
疊代令牌,由提供的分隔符分隔。
檔案:fortokens.jsp -
<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>
<!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=UTF-8">
<title>c:fortoken範例</title>
</head>
<body>
<div style="margin: auto; width: 80%">
<c:forTokens items = "Java,Python,Jsp,Servlet" delims = "," var = "name">
<c:out value = "${name}"/><br/>
</c:forTokens>
</div>
</body>
</html>
執行上面範例程式碼,得到以下輸出結果 -
Java
Python
Jsp
Servlet