jstl标签的forEach实现,获取循环变量

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

用代码实现如下:
<c:set var="index" value="0"></c:set>
<c:forEach items="..." var="...">
.....
<c:set var="index" value="${index + 1}"></c:set>
.....
</c:forEach>

你可能感兴趣的:(java,C++,c,C#,sun)