Home > Article > Web Front-end > Sharing of LayUI’s methods for implementing front-end paging function
This article mainly brings you a method to implement front-end paging function based on LayUI. The editor thinks it’s pretty good, so I’ll share it with you now and give it as a reference. Let’s follow the editor to take a look, I hope it can help everyone.
1. Introduction to LayUI
Layui is a domestic front-end UI framework written using its own module specifications. It follows the writing and organizational form of native HTML/CSS/JS. The threshold is extremely low. Ready to use. Built-in UI framework with some common elements and components.
The download address is http://www.layui.com/, and import it into the project after downloading.
<link rel="stylesheet" href="${pageContext.request.contextPath}/css/layui/css/layui.css" rel="external nofollow" > <script src="${pageContext.request.contextPath}/js/layui.js" ></script>
2. Introduction to LayPage parameters
laypage is a built-in encapsulated object, which can be called directly when paging. There are mainly the following parameters here for configuring laypage. Key-value pair collection:
Key |
Default value |
Type |
Description |
cont |
Required |
String/Object |
Container. The value can be passed in the element id or native DOM or jquery object |
pages |
Required |
Number |
Page number |
##curr | 1 | Number | ##Current page.|
5 | Number | Number of consecutive pages. | |
default | String | Control paging skin | |
1 | Number/String/Boolean | is used to control the homepage. first: false, it means not to display the homepage items | |
Total page value |
| Number/String/Booleanis used to control the last page. last: false, it means not to display the last page item | |
Previous page | String/Boolean | is used to control the previous page. If not displayed, set false | |
Next page | String/Boolean | is used to control the next page. If it is not displayed, set false | |
Core parameters |
Function |
Triggers the callback after paging, and the function returns two parameters. | obj is an object type. Contains all configuration information for paging.First a Boolean class to detect whether the page is initially loaded. Very useful to avoid infinite refreshes. |
<script> var pcountString= "${pcount}"; var psizeString= "${psize}"; var pcountInt= parseInt(pcountString);//总页数 var psizeInt=parseInt(psizeString); //页面大小 var pindex = "${pindex}";// 当前页 var ptotalpages=Math.ceil(pcountInt/psizeInt);// 总记录数 layui.define(['layer', 'laypage' ], function(exports) { var layer = layui.layer; var laypage = layui.laypage; var pcount = pcountInt;// 总记录数 var psize = psizeInt;// 每一页的记录数 // 分页 laypage({ cont : 'pagination', // 页面上的id pages : ptotalpages,//总页数 curr : pindex,//当前页 skin: '#999999',//颜色 jump : function(obj, first) { if (!first) { var parId=$("#parId").val(); var pindex=obj.curr; window.location.href="${ctx}/web/rest/RecycleManage/GetFileList?parId=" rel="external nofollow" +parId+"&pindex="+pindex;//跳转链接 } } }); }); </script>The pagination effect is as follows:
Related recommendations:
Vuejs ideas for implementing local data filtering and paging function
How to use PHP implements list paging function
thinkPHP5 uses laypage paging plug-in to implement list paging function_php example
The above is the detailed content of Sharing of LayUI’s methods for implementing front-end paging function. For more information, please follow other related articles on the PHP Chinese website!