首页 > 代码库 > 页面-JSP-标签总结

页面-JSP-标签总结

  1. 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>

页面-JSP-标签总结