ex6_56.txt
来自「j2ee core design patterns」· 文本 代码 · 共 13 行
TXT
13 行
Example 6.56 Using JSTL, example.jsp
<%-- example.jsp --%>
<%-- note: this example uses JSTL (URL ref) --%>
<table>
<c:forEach var="product" items="${products}" varStatus="status">
<tr>
<td><c:out value="${status.count}"/></td>
<td><c:out value="${product.name}"/></td>
</tr>
</c:forEach>
</table>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?