page.html 401 B

1234567891011121314
  1. <!DOCTYPE html>
  2. <html xmlns:th="http://www.thymeleaf.org">
  3. <head>
  4. <meta charset="UTF-8"/>
  5. <title>Title</title>
  6. </head>
  7. <body th:fragment="page">
  8. <!--当前页码-->
  9. <input type="hidden" th:value="${pageInfo?.pageNum}" th:name="pageNum" id="pageNum"/>
  10. <!--总页数-->
  11. <input type="hidden" th:value="${pageInfo?.pages}" id="pages"/>
  12. <div id="paging" ></div>
  13. </body>
  14. </html>