首页 > 代码库 > JSTL

JSTL

foreach循环遍历  var定义存放取出来的元素  items获得要遍历的对象

<c:forEach var="friendName" items="${session_friends}">    <c:out value="${friendName}"/></c:forEach>

 

JSTL