layui隐藏列
Posted cnsu-cmh
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了layui隐藏列相关的知识,希望对你有一定的参考价值。
layui数据表格中隐藏列方式,如果直接在 field: 'id', title: 'ID', style:'display:none;',导致thead中th中ID仍然在,
我们要做的是表格头中ID也需要隐藏。
、
官网简单demo如下:
layui.use('table', function()
var table = layui.table;
table.render(
elem: '#test'
,url:'/demo/table/user/'
,cellMinWidth: 80 //全局定义常规单元格的最小宽度,layui 2.2.1 新增
,cols: [[
field:'id', width:80, title: 'ID', sort: true
,field:'username', width:80, title: '用户名'
,field:'sex', width:80, title: '性别', sort: true
,field:'city', width:80, title: '城市'
,field:'sign', title: '签名', width: '30%', minWidth: 100 //minWidth:局部定义当前单元格的最小宽度,layui 2.2.1 新增
,field:'experience', title: '积分', sort: true
,field:'score', title: '评分', sort: true
,field:'classify', title: '职业'
,field:'wealth', width:137, title: '财富', sort: true
]]
);
);
添加一行配置即可:
done: function ()
$("[data-field='id']").css('display','none');
layui.use('table', function()
var table = layui.table;
table.render(
elem: '#test'
,url:'/demo/table/user/'
,cellMinWidth: 80 //全局定义常规单元格的最小宽度,layui 2.2.1 新增
,cols: [[
field:'id', width:80, title: 'ID', sort: true
,field:'username', width:80, title: '用户名'
,field:'sex', width:80, title: '性别', sort: true
,field:'city', width:80, title: '城市'
,field:'sign', title: '签名', width: '30%', minWidth: 100 //minWidth:局部定义当前单元格的最小宽度,layui 2.2.1 新增
,field:'experience', title: '积分', sort: true
,field:'score', title: '评分', sort: true
,field:'classify', title: '职业'
,field:'wealth', width:137, title: '财富', sort: true
]]
,done: function ()
$("[data-field='id']").css('display','none');
);
);
效果如下:
以上是关于layui隐藏列的主要内容,如果未能解决你的问题,请参考以下文章