📄 listbl.jsp~6~
字号:
<%@ page contentType="text/html; charset=GBK" %>
<%@ taglib uri="/WEB-INF/struts-bean.tld" prefix="bean" %>
<%@ taglib uri="/WEB-INF/struts-html.tld" prefix="html" %>
<%@ taglib uri="/WEB-INF/struts-logic.tld" prefix="logic" %>
<%@ taglib uri="/WEB-INF/struts-nested.tld" prefix="nested" %>
<html>
<head>
<link rel="STYLESHEET" type="text/css" href="css/shared.css">
<title>
listbl
</title>
</head>
<body bgcolor="#ffffff" >
<h3 align="center">
借阅图书历史信息
</h3>
<br>
<hr height=1 />
<html:form method="post" action="listBookAction.do">
<table width="100%">
<tr>
<td class="tdframe">
<table class="table1" width="100%">
<thead class="tdsectionbar">
<td align="center" class="tdsectionbar" >图书名称</td>
<td align="center" class="tdsectionbar" >图书现存</td>
<td align="center" class="tdsectionbar" >数量</td>
<td align="center" class="tdsectionbar" >借阅时间</td>
<td align="center" class="tdsectionbar" >归还时间</td>
</thead>
<tbody id="bookRows" >
<logic:iterate name="bookActionForm" property="books" id="books">
<tr class="tdsectionbar">
<td class="tdbg0" >
<bean:write name="books" property="bookName" />
</td>
<td class="tdbg0" >
<bean:write name="books" property="qty" format="###"/>
</td>
<td class="tdbg0">
<bean:write name="books" property="totalQty" format="###"/>
</td>
</tr>
</logic:iterate>
</tbody>
</table>
</td>
</tr>
</table>
</html:form>
<hr height=1 />
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -