请给出JSTL里面的c:forEach标签例子

2021-07-15 18:00:13 浏览数 (1)

7)c:forEach标签

完成诸如显示ArrayList内容的功能:

例 2.2.7

<%@ page contentType="text/html; charset=GBK"%>

<%@ page import="java.util.*"%>

<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>

<html>

<body>

<%

ArrayList books=new ArrayList();

books.add(new String("java入门"));

books.add(new String("JSTL入门"));

books.add(new String("C 精通"));

books.add(new String("C 精通2"));

books.add(new String("C 精通3"));

books.add(new String("C 精通4"));

/*note that you must use the following stetement to make the code inside scriptlet available

to the jsp page. */

pageContext.setAttribute("booksq",books);

%>

<c:forEach var="book" items="${booksq}" begin="1" end="3" step="1">

<c:out value="${book}"/><br>

</c:forEach>

</body>

</html>

更多请看:https://blog.csdn.net/qq_44594371/article/details/103186146

jsp

0 人点赞