📄 category-browse.jsp
字号:
<%@ page contentType="text/html;charset=UTF-8"%>
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>
<%@ taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt" %>
<table cellspacing=3 cellpadding=3 width="100%">
<tr>
<td bgcolor="#6AB301"><h2>种类: ${category.name}</h2></td>
</tr>
<c:choose>
<c:when test="${bookCount gt 0}">
<tr>
<td bgcolor="#A2D846"><b>书名</b></td>
<td bgcolor="#A2D846"><b>价格</b></td>
<td bgcolor="#A2D846"></td>
</tr>
<c:forEach items="${books}" var="thisItem">
<tr>
<td bgcolor="#C2E980">
<strong>${thisItem.name}</strong><br>
${thisItem.description}
</td>
<td bgcolor="#C2E980"><fmt:formatNumber value="${thisItem.unitPrice}" type="currency"/></td>
<td bgcolor="#C2E980"><a href="additem.do?book=${thisItem.id}">购买</a></td>
</tr>
</c:forEach>
</c:when>
<c:otherwise>
<tr>
<td colspan="3">此分类暂时没有书目</td>
</tr>
</c:otherwise>
</c:choose>
</table>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -