layui 的 table render 参数 设置分页
时间: 2024-05-15 22:17:15 浏览: 146
您可以使用`limit`和`page`参数设置分页,例如:
```
layui.use('table', function(){
var table = layui.table;
//第一个实例
table.render({
elem: '#demo'
,url: '/demo/table/user/' //数据接口
,page: true //开启分页
,limit: 10 //每页显示的条数
,cols: [[ //表头
{field: 'id', title: 'ID', width:80, sort: true, fixed: 'left'}
,{field: 'username', title: '用户名', width:120}
,{field: 'sex', title: '性别', width:80, sort: true}
,{field: 'city', title: '城市', width:100}
,{field: 'sign', title: '签名', width: 200}
,{field: 'experience', title: '积分', width: 80, sort: true}
,{field: 'score', title: '评分', width: 80, sort: true}
,{field: 'classify', title: '职业', width: 100}
,{field: 'wealth', title: '财富', width: 135, sort: true}
]]
});
});
```
请注意,您需要在HTML代码中指定一个id作为表格的容器,例如`<table id="demo"></table>`。
阅读全文