5.6每日总结
Posted 2351920019xin
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了5.6每日总结相关的知识,希望对你有一定的参考价值。
<%@ 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>
2108 JAVASE每日复习总结 链接汇总
JAVA每日内容复习总结汇总
Java基础部分除了学习新知识,其实学习完很重要的就是每日的复习回顾
希望本文可以帮助到你,本文是程序媛泡泡给大家总结的链接汇总,欢迎食用
可以关注后方便后续查看哦~祝愿大家都能拥抱技术,扬帆起航 😃
聪明在于勤奋,天才在于积累,与君共勉~
前言总结
DAY01 复习内容总结
DAY02 复习内容总结
以上是关于5.6每日总结的主要内容,如果未能解决你的问题,请参考以下文章