You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
496 B
17 lines
496 B
layui.use('laypage', function () {
|
|
var laypage = layui.laypage;
|
|
//执行一个laypage实例
|
|
laypage.render({
|
|
elem: 'pagination', //注意,这里的 test1 是 ID,不用加 # 号
|
|
count: 50, //数据总数,从服务端得到
|
|
layout: ['count', 'prev', 'page', 'next'], //自定义分页布局
|
|
groups: 7, // 只显示 1 个连续页码
|
|
prev: '<',
|
|
next: '>',
|
|
first: false, //不显示首页
|
|
last: false //不显示尾页
|
|
});
|
|
});
|
|
|
|
|
|
|