【无标题】代码块的使用

<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
<%--
  Created by IntelliJ IDEA.
  User: qu yuehui
  Date: 2022/9/13
  Time: 22:19
  To change this template use File | Settings | File Templates.
--%>
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<%@page isELIgnored="false" %>
<html>
<head>
  <%pageContext.setAttribute("APP_PATH", request.getContextPath());%>
    <script type="text/javascript" src="${APP_PATH}/static/JQuery/jquery.js"></script>
    <link href="${APP_PATH}/static/bootstrap-3.4.1-dist/css/bootstrap.min.css" rel="stylesheet">
    <script src="${APP_PATH}/static/bootstrap-3.4.1-dist/js/bootstrap.min.js"></script>
    <script type="text/javascript]">

    </script>
    <title>Title</title>
</head>
<body>
<%pageContext.setAttribute("APP_PATH", request.getContextPath());%>
<div class="container">
    <!--标题-->
    <div class="row">
        <div class="col-md-12"><h1>SSM-CRUD</h1></div>
    </div>
    <!--按钮-->
    <div class="row">
    <div class="col-md-4 col-md-offset-8">
        <button type="button" class="btn btn-primary">新增</button>
        <button type="button" class="btn btn-danger">删除</button>
    </div>
    </div>
    <!--显示表格数据-->
    <div class="row">
        <table class="table">
            <tr>
                <th>#</th>
                <th>empName</th>
                <th>gender</th>
                <th>email</th>
                <th>操作</th>
            </tr>
            <c:forEach items="${pageInfo.list}" var="emp">
            <tr>
                <th>${emp.empId}</th>
                <th>${emp.empName}</th>
                <th>${emp.gender=="M"?"男":"女"}</th>
                <th>${emp.email}</th>
                <th>
                    <button type="button" class="btn btn-primary">
                        <span class="glyphicon glyphicon-pencil" aria-hidden="true"></span>编辑
                    </button>
                    <button type="button" class="btn btn-danger">
                        <span class="glyphicon glyphicon-trash" aria-hidden="true"></span>
                        删除</button>
                </th>
            </tr>
            </c:forEach>
        </table>
    </div>
    <!--分页文字信息-->
    <div class="col-md-6">
        当前记录数${pageInfo.pageNum}页,总共${pageInfo.pages}页,总共${pageInfo.total}条记录
    </div>
    <!--显示分页信息-->
    <div class="row">
        <nav aria-label="Page navigation">
            <ul class="pagination">
                <li><a href="/emps?pn=1">首页</a> </li>
                <c:if test="${pageInfo.hasPreviousPage}">
                    <li>
                        <a href="/emps?pn=${pageInfo.pageNum-1}" aria-label="Previous">
                            <span aria-hidden="true">&laquo;</span>
                        </a>
                    </li>
                </c:if>

                <c:forEach items="${pageInfo.navigatepageNums}" var="page_Num">

                    <li  <c:if test="${page_Num==pageInfo.pageNum}" >
                            class="active"
                    </c:if>> <a href="/emps?pn=${page_Num}">${page_Num}</a> </li>
                </c:forEach>

                <c:if test="${pageInfo.hasPreviousPage}">
                    <li>
                        <a href="/emps?pn=${pageInfo.pageNum+1}" aria-label="Next">
                            <span aria-hidden="true">&raquo;</span>
                        </a>
                    </li>
                </c:if>
                <li><a href="/emps?pn=${pageInfo.pages}">末页</a> </li>
            </ul>
        </nav>
    </div>
</div>
</body>
</html>

  • 1
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 1
    评论
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值