标签:总结 none 5.6 color text 每日 background font border
<%@ page import="wangzhan.Thesql" %>
<%@ page import="wangzhan.Pd_P_assignment" %>
<%@ page import="wangzhan.Pd_S_assignment" %>
<%@ page import="wangzhan.Pd_lesson" %>
<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>教学管理平台</title>
<style>
body {
font-family: Arial, sans-serif;
background-color: #f7f7f7;
}
h1 {
color: #333;
text-align: center;
margin-top: 50px;
}
table {
margin: 0 auto;
border-collapse: collapse;
box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
background-color: #fff;
}
th, td {
padding: 30px;
text-align: center;
border: 1px solid #ddd;
font-size: 17px;
}
th {
background-color: #8b8989;
color: #fff;
font-size: 30px;
}
tr:nth-child(even) {
background-color: #f2f2f2;
}
input{
border: none;
border-radius: 10px;
height: 27px;
}
.submit{
background-color: rgb(26, 131, 201);
color: aliceblue;
height: 50px;
width: 90%;
}
.submit:active{
background-color: rgb(166, 172, 175);
}
a{
text-decoration: none;
font-size: 20px;
color: #3bc9e2;
}
/* 翻页选中样式 */
.active {
color: white;
background-color: #007bff;
border-radius: 0.25rem;
padding: 0.5rem;
text-decoration: none;
margin-right: 10px;
}
/* 翻页未选中样式 */
a.page-link {
color: #007bff;
text-decoration: none;
margin-right: 10px;
}
#pagination{
text-align: center;
}
</style>
</head>
<%
Thesql thesql = new Thesql();
request.setCharacterEncoding("UTF-8");
String les="";//课程名称
String pu="";//老师名称
String stu="";//是否审批
les=request.getParameter("les");
pu=request.getParameter("pu");
stu=request.getParameter("stu");
Pd_lesson pd[] = thesql.lesson_DimQuery("",les,pu,stu);
String id_=request.getParameter("id_");
int itemsPerPage = 5;//每页展示多少条
int totalItems = pd.length;//总共多少条
int currentPage = request.getParameter("page") == null ? 1 : Integer.parseInt(request.getParameter("page"));
int totalPages = (int) Math.ceil(totalItems / (double)itemsPerPage);
int startItem = (currentPage - 1) * itemsPerPage + 1;
int endItem = Math.min(startItem + itemsPerPage - 1, totalItems);
%>
<body>
<h1>审批课程</h1>
<table>
<tr>
<form action="shenhe.jsp" method="post">
<th>编号</th>
<th>课程:<input type="text" name="les"></th>
<th>教师:<input type="text" name="pu"></th>
<th>审批状态:<input type="text" name="stu"></th>
<th><input class="submit" type="submit"></th>
</form>
</tr>
<% for (int i = startItem; i < endItem; i++) { %>
<tr>
<td><%=pd[i].getId()%></td>
<td><%=pd[i].getLesson_name()%></td>
<td><%=pd[i].getLesson_teacher()%></td>
<td><%=pd[i].getIsPass()%></td>
<td><a href="Aduit.jsp?les_id=<%=pd[i].getId()%>&id_=<%=id_%>">查看</a></td>
</tr>
<% }%>
</table>
<br>
<%
if(!(les!=null)) les="";
if(!(pu!=null)) pu="";
if(!(stu!=null)) stu="";
%>
<div id="pagination">
<%-- 显示翻页链接 --%>
<%-- &les=<%=les%>&pu=<%=pu%>&stu=<%=stu%>--%>
<a href="?page=<%= Math.max(1, currentPage - 1) %>&les=<%=les%>&pu=<%=pu%>&stu=<%=stu%>" <%= currentPage == 1 ? "class=\"disabled page-link\"" : "class=\"page-link\"" %> >« 上一页</a>
<% for (int i = 1; i <= totalPages; i++) { %>
<a href="?page=<%= i %>&les=<%=les%>&pu=<%=pu%>&stu=<%=stu%>" <%= i == currentPage ? "class=\"active\"" : "class=\"page-link\"" %> ><%= i %></a>
<% } %>
<a href="?page=<%= Math.min(currentPage + 1, totalPages) %>&les=<%=les%>&pu=<%=pu%>&stu=<%=stu%>" <%= currentPage == totalPages ? "class=\"disabled page-link\"" : "class=\"page-link\"" %> >下一页 »</a>
</div>
</body>>
</html>
标签:总结,
none,
5.6,
color,
text,
每日,
background,
font,
border
From: https://www.cnblogs.com/2351920019xin/p/17378441.html