simplerange.jsp
来自「基于netbeans的java桌面应用程序合集」· JSP 代码 · 共 17 行
JSP
17 行
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
<html>
<head>
<title>JSTL: Iterator Support -- Simple Range Iteration Example</title>
</head>
<body bgcolor="#FFFFFF">
<h3>Simple Range Iteration</h3>
<h4>1 to 10</h4>
<c:forEach var="i" begin="1" end="10">
${i} •
</c:forEach>
</body>
</html>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?