Layui表格向下滑动时表头固定悬浮

记录: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>

猜你喜欢

转载自blog.csdn.net/weixin_43652106/article/details/140688761