1、jstl(JSP Standard Tag Library) jsp标准标签库
2、使用前要导入<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
3、<c:forEach var="uu" items="${list}">注:items后接的是el表达式-->集合
c标签没有if
注:el和jstl 只能在jsp页面中使用,不能在html或servlet中用
http://www.runoob.com/jsp/jsp-jstl.html
网友评论