我是靠谱客的博主 时尚柠檬,最近开发中收集的这篇文章主要介绍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 的设置

以上这篇layui数据表格自定义每页条数limit设置就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持靠谱客。

最后

以上就是时尚柠檬为你收集整理的layui数据表格自定义每页条数limit设置的全部内容,希望文章能够帮你解决layui数据表格自定义每页条数limit设置所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(447)

评论列表共有 0 条评论

立即
投稿
返回
顶部