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

📄 jlfj.jsp

📁 图书管理系统
💻 JSP
字号:
<%@ page language="java" pageEncoding="UTF-8"	contentType="text/html; charset=UTF-8"%><%@ taglib uri="/WEB-INF/c.tld" prefix="c" %><%@ taglib uri="/WEB-INF/fmt.tld" prefix="fmt" %><!DOCTYPE html PUBLIC "-//W3C//Dtd html 4.0 transitional//EN"><html>	<head>			<TITLE>湖南科技学院网上图书管理系统</TITLE>			<link href="<c:url value='/css/style.css' />" rel="stylesheet" type="text/css">		<script type="text/javascript">			function subPage(){				var page=document.getElementById("page").value;				document.forms.matchFriendForm.action='<c:url value='matchFriends.action' />?currentPage='+page;				document.all("matchFriendForm").submit();				}			function frontPage(){				var page=document.getElementById("page").value;				var num=parseInt(page)-1;				document.forms.matchFriendForm.action='<c:url value='matchFriends.action' />?currentPage='+num;				document.all("matchFriendForm").submit();				}			function nextPage(){				var page=document.getElementById("page").value;				var num=parseInt(page)+1;				document.forms.matchFriendForm.action='<c:url value='matchFriends.action' />?currentPage='+num;				document.all("matchFriendForm").submit();				}</script>	</head>	<body >		<center>			<table width="650" border="0" style="margin:20px 0;" align="center"				cellpadding="0" cellspacing="0" >				<tr>					<td background="<c:url value='/images/centerleft.gif' />"></td>					<td width="100%">						<form action="<c:url value='matchFriends.action' />" method="post" name="matchFriendForm">						<table width="100%" border="0" cellspacing="1" cellpadding="3"							align="center">							<tr>								<td bgcolor="#e6ffd6" align="left" height="35" colspan="4">									<font color="green">::罚款信息::</font>								</td>							</tr>							<tr>								<td bgcolor="#cccccc"  height="3" colspan="4"></td>							</tr>							<tr bgcolor="#fff5d6">         						 <td align="left"><font color="green">读者编号:</font>         						 	<input type="text" id="readerid" width="20">                    		 </td>           					<td align="left"><font color="green">延期状态:</font>         						 	<select id="status">         						 		<option value="0">所有</option>         						 		<option value="1">罚款</option>         						 		<option value="2">解除罚款</option>         						 	</select>                    		 </td>                    		                    		 <td align="left">            						<input type="submit" name="submit" value="开始查询" />                           					</td>          					</tr>          					 <tr bgcolor="#fff5d6">                    		 		<td></td>          					<td align="left">            						<input type="button" name="delete" value="罚款登记单" onclick=""/>                           					</td>          					<td align="left">            						<input type="button" name="delete" value="删除记录" onclick=""/>                           					</td>         					</tr>         					<tr>								<td bgcolor="#cccccc"  height="3" colspan="4"></td>							</tr>						</table>						</form>						<table width="100%" border="0" cellspacing="1" cellpadding="3"							align="left">							<tr bgcolor="92bff2" height="25">									<td width="8%" align="left"><font color="green">编号</font></td>									<td width="15%" align="left"><font color="green">读者编号</font></td>									<td width="15%" align="left"><font color="green">读者姓名</font></td>										<td width="15%" align="left"><font color="green">罚款金额</font></td>									<td width="15%" align="left"><font color="green">罚款天数</font></td>									<td width="10%" align="left"><font color="green">操作员</font></td>									<td width="15%" align="left"><font color="green">是否罚款</font></td>									<td width="7%"></td>							</tr>							<c:if test="${requestScope.runFriend!=null}">								<c:forEach items="${requestScope.runFriend}" var="friend">								<tr bgcolor="92bff2" height="25">									<td width="8%" align="left"><font color="green">${friend.age}</font></td>									<td width="15%" align="left"><font color="green">${friend.age}</font></td>									<td width="15%" align="left"><font color="green">${friend.age}</font></td>									<td width="15%" align="left"><font color="green">${friend.age}</font></td>									<td width="15%" align="left"><font color="green">${friend.age}</font></td>									<td width="10%" align="left"><font color="green">${friend.age}</font></td>									<td width="15%" align="left"><font color="green">${friend.age}</font></td>									<c:if test="">										<td width="7%" align="left"><font color="green">解除罚款</font></td>									</c:if>									</tr>								</c:forEach>							<tr>								<td colspan="5" align="right">									<span class="fontred">${requestScope.matchFriends_TotalNum}</span> 条信息 当前第									<span class="fontred">${requestScope.currentPage}</span> 页 共有									<span class="fontred">${requestScope.matchFriends_TotalPage}</span> 页									<c:choose>               							<c:when test="${requestScope.currentPage==1}">               								<c:choose>               									<c:when test="${requestScope.matchFriends_TotalPage==1}" >               										上一页/下一页               									</c:when>	               									<c:otherwise>               										上一页/<a href="#" onclick="javascript:nextPage();">下一页</a>               									</c:otherwise>               								</c:choose>            							</c:when>             		  					<c:when test="${requestScope.currentPage==requestScope.matchFriends_TotalPage}">              		 						<a href="#" onclick="javascript:frontPage();">上一页</a>/下一页              	   						</c:when>	      	   	   						<c:otherwise>	      				 					<a href="#" onclick="javascript:frontPage();">上一页</a>/<a href="#" onclick="javascript:nextPage();">下一页</a>	               						</c:otherwise>                					</c:choose>                					转到                					 <select name="select" id="page" onchange="subPage();" style="width: 50;height: 25">                					 	<c:forEach begin="1" end="${requestScope.matchFriends_TotalPage}" var="num">                					 		<c:choose>                					 			<c:when test="${requestScope.currentPage==num}">                					 				<option value="${num}" selected>${num}</option>                					 			</c:when>                					 			<c:otherwise>                					 				<option value="${num}" >${num}</option>                					 			</c:otherwise>                					 		</c:choose>                					 	</c:forEach>                					 </select>								</td>							</tr>							</c:if>						</table>					</td>					<td background="<c:url value='/images/centeright.gif' />"></td>				</tr>				<tr>					<td>						<img src="<c:url value='/images/bottomleft.gif' />" />					</td>					<td background="<c:url value='/images/bottomcenter.gif' />"></td>					<td>						<img src="<c:url value='/images/bottomright.gif' />" />					</td>				</tr>			</table>		</center>	</body></html>

⌨️ 快捷键说明

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