这个标签是通过脚本嵌入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