首页前端开发其他前端知识Bootstrap实现表格头部固定的方法及代码是什么

Bootstrap实现表格头部固定的方法及代码是什么

时间2024-03-27 03:54:03发布访客分类其他前端知识浏览873
导读:这篇文章给大家分享的是“Bootstrap实现表格头部固定的方法及代码是什么”,文中的讲解内容简单清晰,对大家学习和理解有一定的参考价值和帮助,有这方面学习需要的朋友,接下来就跟随小编一起学习一下“Bootstrap实现表格头部固定的方法及...
这篇文章给大家分享的是“Bootstrap实现表格头部固定的方法及代码是什么”,文中的讲解内容简单清晰,对大家学习和理解有一定的参考价值和帮助,有这方面学习需要的朋友,接下来就跟随小编一起学习一下“Bootstrap实现表格头部固定的方法及代码是什么”吧。
   

 


bootstrap表格头部的固定方法:首先引入jquery和bootstrap;然后添加固定列代码为“ $("#table").bootstrapTable('destroy').bootstrapTable({ ...} )”即可。

bootstrap-table固定表头固定列

1.引入

  bootstrap依赖于jquery

  bootstrap-table依赖于bootstrap,所以都需要引入

2. bootstrap-table有两种方式,html、js

 table id="table" class="table table-bordered table-hover"
           data-toggle="table"  //启用bootstrap表格
           data-classes="table table-hover"
           data-show-columns="true"  //是否显示内容列下拉框。
           data-striped="true"  //设置为 true 会有隔行变色效果
           data-show-toggle="true" //是否显示切换视图(table/card)按钮。
           data-search="true" //是否显示搜索框
           data-show-refresh="true" //是否显示刷新按钮
           data-toolbar="#toolbar"  //工具栏
           data-height="500">
      //设置表格高度-固定表头生效
        thead>
    
        tr>
    
            th>
    表格 ID/th>
    
            th>
    表格 Name/th>
    
            th>
    表格 Price/th>
    
            th>
    表格 Price/th>
    
            th>
    表格 Price/th>
    
            th>
    表格 Price/th>
    
            th>
    表格 Price/th>
    
            th>
    表格 Price/th>
    
            th>
    表格 Price/th>
    
            th>
    表格 Price/th>
    
            th>
    表格 Price/th>
    
        /tr>
    
        /thead>
    
        tbody>
    
        tr>
    
            td>
    1/td>
    
            td>
    Item 1/td>
    
            td>
    $1/td>
    
            td>
    Item 1/td>
    
            td>
    $1/td>
    
            td>
    Item 1/td>
    
            td>
    $1/td>
    
            td>
    Item 1/td>
    
            td>
    $1/td>
    
            td>
    Item 1/td>
    
            td>
    $1/td>
    
        /tr>
    
        tr>
    
            td>
    2/td>
    
            td>
    Item 2/td>
    
            td>
    $2/td>
    
            td>
    Item 1/td>
    
            td>
    $1/td>
    
            td>
    Item 1/td>
    
            td>
    $1/td>
    
            td>
    Item 1/td>
    
            td>
    $1/td>
    
            td>
    Item 1/td>
    
            td>
    $1/td>
    
        /tr>
    
/table>
    

js方式

 table id="table">
    /table>
    script>

    $("#table").bootstrapTable({

        toolbar: "#toolbar",
        striped: true, //是否显示行间隔色        height:300,
        sortable: false,//是否排序        search: true, //是否显示表格搜索,此搜索是客户端搜索,不会进服务端        strictSearch: true, //是否显示刷新        showColumns: true, //是否显示所有的列        showRefresh: true, //是否显示刷新按钮        minimumCountColumns: 2, //最少允许的列数        showToggle:true, //是否显示详细视图和列表视图的切换按钮        cardView: false, //是否显示详细视图        columns: [{

            field: 'id',
            title: 'Item ID'
        }
, {

            field: 'name',
            title: 'Item Name'
        }
, {

            field: 'price',
            title: 'Item Price'
        }
],//        data可以换成url        data: [{

            id: 1,
            name: 'Item 1',
            price: '$1'
        }
, {

            id: 2,
            name: 'Item 2',
            price: '$2'
        }
, {

            id: 3,
            name: 'Item 3',
            price: '$3'
        }
, {

            id: 4,
            name: 'Item 4',
            price: '$4'
        }
, {

            id: 5,
            name: 'Item 5',
            price: '$5'
        }
, {

            id: 6,
            name: 'Item 6',
            price: '$6'
        }
, {

            id: 7,
            name: 'Item 7',
            price: '$7'
        }
, {

            id: 8,
            name: 'Item 8',
            price: '$8'
        }
, {

            id: 9,
            name: 'Item 9',
            price: '$9'
        }
, {

            id: 10,
            name: 'Item 10',
            price: '$10'
        }
]
    }
    )/script>

固定列代码

 $("#table").bootstrapTable('destroy').bootstrapTable({

        fixedColumns: true, 
        fixedNumber: 1 //固定列数
    }
    

效果展示:

3.问题解决
  固定表头展示错位
  解决办法:给 th 添加宽度 data-width="60px"

  固定列也会错位
  解决办法:所有内容不折行,展示在一行(感觉应该是line-height导致的差异)

  固定表头固定列重叠的表头部分左右滚动的时候 没有固定
  解决办法:重叠部分手动加了层级

  当浏览器窗口变化是,表头与表格不对齐,应该怎么办?

$('#tableId').bootstrapTable();
 // init via javascript

    $(window).resize(function () {
    
        $('#tableId').bootstrapTable('resetView');

    }
    );
    

现在大家对于Bootstrap实现表格头部固定的方法及代码是什么的内容应该都清楚了吧,希望大家阅读完这篇文章能有所收获。最后,想要了解更多Bootstrap实现表格头部固定的方法及代码是什么的知识,欢迎关注网络,网络将为大家推送更多相关知识点的文章。

声明:本文内容由网友自发贡献,本站不承担相应法律责任。对本内容有异议或投诉,请联系2913721942#qq.com核实处理,我们将尽快回复您,谢谢合作!


若转载请注明出处: Bootstrap实现表格头部固定的方法及代码是什么
本文地址: https://pptw.com/jishu/653962.html
gin框架是什么,有什么优势 读写锁是什么,golang读写锁学习

游客 回复需填写必要信息