⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 lendbook.jsp

📁 图书馆管理系统 能满足 查询
💻 JSP
字号:
<%@ page language="java" pageEncoding="UTF-8"%>

<%@ taglib uri="http://struts.apache.org/tags-bean" prefix="bean"%>
<%@ taglib uri="http://struts.apache.org/tags-html" prefix="html"%>
<%@ taglib uri="http://struts.apache.org/tags-logic" prefix="logic"%>
<%@ taglib uri="http://struts.apache.org/tags-tiles" prefix="tiles"%>
<%
	String Path = request.getContextPath();
%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">

<html:html lang="true">
<head>
	<link href="<%=Path%>/css/style.css" rel="stylesheet">
	<link href="<%=Path%>/css/main.css" rel="stylesheet">
	<link rel="stylesheet" type="text/css" href="style.css" />
	<script type="text/javascript" src="<%=Path%>/js/dojo/dojo.js"></script>
	<script type="text/javascript" src="<%=Path%>/js/lendbook.js"></script>
</head>

<body onload="javascript:document.showform.userCode.focus();">
	<form action="" name="showform" method="post">
		&nbsp;&nbsp;
		<!--RIGHT-->
		<logic:present name="error"><%=request.getAttribute("error")%></logic:present>
		<div class="right" align="left">
			<div class="content" align="left">
				<p align="center">
					借书操作
				</p>
				<table width="742" border="1" style="margin-top: 10px" >
					<tr>
						<td width="450" height="77">
							<div id="usrInfo" class="usrInfo" align="left"
								style="float: left;">
								姓&nbsp;&nbsp;名:
								<input type="text" id="name" value="" />
								单&nbsp;&nbsp;位:
								<input type="text" id="unit" value="" />
								<br>
								已&nbsp;&nbsp;借:
								<input type="text" id="userid" value="" />
								年&nbsp;&nbsp;龄:
								<input type="text" id="age" value="" />
							</div>
						</td>
						<td width="276">
							<div id="numdiv" class="numdiv" align="left" style="float: left;">
								图书证编号:
								<input type="text" name="userCode" id="userCode" onkeydown="selectUser(event)" />
							</div>
						</td>
					</tr>
					<tr>
						<td height="82">
							<div id="bookinfo" class="bookinfo" align=left
								style="float: left;">
								书&nbsp;&nbsp;名:
								<input type="text" id="bname" value="" name=""/>
								作&nbsp;&nbsp;者:
								<input type="text" id="autor" value="" name=""/>
								<br>
								出版社:
								<input type="text" id="pcom" value="" />
								ISBN&nbsp;&nbsp;:
								<input type="text" id="isbn" value="" name="isbn"/>
							</div>
						</td>
						<td>
							<div id="bnumdiv" class="bnumdiv" align="left"
								style="float: left;">
								图书条码号:
								<input type="text" name="bookCode" id="bookCode"
									onkeydown="selectBook(event)" />
							</div>
						</td>
					</tr>
				</table>
				<br>
				<div align="center">
					<input type="button" value="确定借阅" name="lendbutton" onkeydown="lendBook(event)" >

				</div>
				<div class="line">
					图书借还记录
				</div>
				<div class="data_bot1" id="lendinfo" >
					<table>
						<tr>
							<th>
								图书条码号
							</th>
							<th>
								书名
							</th>
							<th>
								ISBN
							</th>
							<th>
								读者条码号
							</th>
							<th>
								读者姓名
							</th>
							<th>
								借出时间
							</th>
							<th>
								应还时间
							</th>
							<th>
								读者类别
							</th>
						</tr>
						<tr>
							<td>
								&nbsp;
							</td>
							<td>
								&nbsp;
							</td>
							<td>
								&nbsp;
							</td>
							<td>
								&nbsp;
							</td>
							<td>
								&nbsp;
							</td>
							<td>
								&nbsp;
							</td>
							<td>
								&nbsp;
							</td>
							<td>
								&nbsp;
							</td>
						</tr>
					</table>
				</div>
			</div>
		</div>
		<!--end RIGHT-->
	</form>
</body>

</html:html>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -