📄 ex6_56.txt
字号:
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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -