记录:Layui表格向下滑动时表头固定悬浮
使用table的height参数:
示例
//“方法级渲染”配置方式
table.render({
//其它参数在此省略
height: 315 //固定值
});
table.render({
//其它参数在此省略
height: 'full-20' //高度最大化减去差值
});
等价于(“自动化渲染”配置方式)
<table class="layui-table" lay-data="{height:315}" lay-filter="test"> …… </table>
<table class="layui-table" lay-data="{height:'full-20'}" lay-filter="test"> …… </table>