table.render({
elem: '#data_grid'
//,width: 900
//,height: 274
,cols: [[ //標(biāo)題欄
{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' //表格風(fēng)格
,even: true
,page: true //是否顯示分頁
,limits: [3,5,10]
,limit: 5 //每頁默認(rèn)顯示的數(shù)量
,done:function(res){
userPage.data = res.data;
}
//,loading: false //請求數(shù)據(jù)時,是否顯示loading
});
以上這篇layui數(shù)據(jù)表格自定義每頁條數(shù)limit設(shè)置就是小編分享給大家的全部內(nèi)容了,希望能給大家一個參考,也希望大家多多支持腳本之家。