comments.jsp
来自「pebble-blog 博客源码博客源码博客源码」· JSP 代码 · 共 22 行
JSP
22 行
<%-- Renders a collection of comments, calling comment.jsp for each comment. ${blog} : the current Blog instance ${blogEntry} : the current BlogEntry instance--%><a name="comments"></a><c:forEach var="comment" items="${blogEntry.comments}" varStatus="status"> <c:set var="comment" scope="request" value="${comment}"/> <c:choose> <c:when test="${status.count % 2 == 0}"> <div class="even"> </c:when> <c:otherwise> <div class="odd"> </c:otherwise> </c:choose> <jsp:include page="comment.jsp"><jsp:param name="commentIdentifier" value="comment${comment.id}"/></jsp:include> </div></c:forEach>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?