layui数据表格自定义每页条数limit设置
发布:smiling 来源: PHP粉丝网 添加日期:2022-01-18 22:01:22 浏览: 评论:0
今天小编就为大家分享一篇layui数据表格自定义每页条数limit设置,具有很好的参考价值,希望对大家有所帮助,一起跟随小编过来看看吧。
废话不多说,直接上代码吧!如下所示:
- table.render({
- elem: '#data_grid'
- //,width: 900
- //,height: 274
- ,cols: [[ //标题栏
- {field: 'id', title: 'ID', width: 80, sort: true}
- ,{field: 'username', title:'用户名',width: 100} //空列
- ,{field: 'password', title: '密码', width: 120}
- ,{field: 'gender', title: '性别', width: 150}
- ,{field: 'nichen', title: '昵称', width: 150}
- ,{field: 'birthday', title: '出生年月', width: 120}
- ,{fixed: 'right', width: 215,align:'center', toolbar: '#barDemo'}
- ]]
- ,url:url
- ,skin: 'row' //表格风格
- ,even: true
- ,page: true //是否显示分页
- ,limits: [3,5,10]
- ,limit: 5 //每页默认显示的数量
- ,done:function(res){
- userPage.data = res.data;
- }
- //,loading: false //请求数据时,是否显示loading
- });
主要是:limits 和 limit 的设置。
Tags: layui表格自定义 limit
- 上一篇:PHP Swoole异步MySQL客户端实现方法示例
- 下一篇:最后一页
相关文章
- ·PHP修改memory_limit内存限制的方法详解(2014-01-17)
- ·php set_time_limit()设置页面执行时间(2014-03-12)
- ·修改PHP的memory_limit限制3种方法(2014-09-21)
推荐文章
热门文章
最新评论文章
- 写给考虑创业的年轻程序员(10)
- PHP新手上路(一)(7)
- 惹恼程序员的十件事(5)
- PHP邮件发送例子,已测试成功(5)
- 致初学者:PHP比ASP优秀的七个理由(4)
- PHP会被淘汰吗?(4)
- PHP新手上路(四)(4)
- 如何去学习PHP?(2)
- 简单入门级php分页代码(2)
- php中邮箱email 电话等格式的验证(2)