C标签
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
(1)if...else...
<c:choose>
<c:when test=""></c:when>
<c:otherwise></c:otherwise>
</c:choose>
(2)for遍历
<c:forEach items="${scores}" var="scores" varStatus="si">
<tr style="height: 6px;">
<td>${si.index +1} </td>
</tr>
</c:forEach>
(3)if
<c:if test=""></c:if>
转载于:https://blog.51cto.com/5185508/1581810