html原生table三级 多层表头表格配置

■ 两级表头

<!DOCTYPE html>
<html lang="en">

<head>
  <meta charset="UTF-8">
  <meta http-equiv="X-UA-Compatible" content="IE=edge">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>两级表头</title>
  <style type="text/css">
    td,
    th {
      font-style: normal;
      font-weight: normal;
      text-align: center;
    }

    tr {
      height: 48px;
    }

    .firstHead th {
      font-size: 14px;
      font-weight: bold;
    }

    .secondHead th {
      font-size: 13px;
      font-weight: bold;
    }

    table {
      border-collapse: collapse;
      border-color: #D8DFE6;
    }

    table thead {
      background: #F3FDFF;
    }
  </style>
</head>

<body>
  <div class="table">
    <table border="1" width="100%">
      <colgroup>
        <col style="width: 150px;" />
        <col style="width: 50px;" />
        <col style="width: 100px;" />
        <col style="width: 100px;" />
        <col style="width: 100px;" />
        <col style="width: 100px;" />
        <col style="width: 100px;" />
        <col style="width: 100px;" />
        <col style="width: 100px;" />
        <col style="width: 100px;" />
      </colgroup>
      <thead>
        <tr class="firstHead">
          <th rowspan="2" colspan="1">
            项目
          </th>
          <th rowspan="2" colspan="1">
            行次
          </th>
          <th rowspan="1" colspan="3">
            平均资金占用额
          </th>
          <th rowspan="1" colspan="3">
            投资收益
          </th>
          <th rowspan="1" colspan="2">
            投资回报率
          </th>
        </tr>
        <tr class="secondHead">
          <th> 上年数 </th>
          <th> 本年预算数 </th>
          <th> 增长率 </th>
          <th> 上年数 </th>
          <th> 本年预算数 </th>
          <th> 增长率 </th>
          <th> 上年数 </th>
          <th> 本年预算数 </th>
        </tr>
      </thead>
      <tbody>
        <tr>
          <td></td>
          <td></td>
          <td></td>
          <td></td>
          <td></td>
          <td></td>
          <td></td>
          <td></td>
          <td></td>
          <td></td>
        </tr>
      </tbody>
    </table>
  </div>
</body>

</html>

效果图:
在这里插入图片描述

■ 三级表头

<!DOCTYPE html>
<html lang="en">

<head>
  <meta charset="UTF-8">
  <meta http-equiv="X-UA-Compatible" content="IE=edge">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>三级表头</title>
  <style type="text/css">
    td,
    th {
      font-style: normal;
      font-weight: normal;
      text-align: center;
    }

    tr {
      height: 48px;
    }

    .firstHead th,
    .secondHead th,
    .thirdHead th {
      font-size: 14px;
      font-weight: bold;
    }

    table {
      border: none;
      border-collapse: collapse;
      border-color: #D8DFE6;
    }

    table thead {
      background: #F3FDFF;
    }

    table tbody tr {
      height: 50px;
    }
  </style>
</head>

<body>

  <body>
    <div class="table">
      <table border="1" width="100%">
        <colgroup>
          <col style="width: 50px;" />
          <col style="width: 100px;" />
          <col style="width: 100px;" />
          <col style="width: 100px;" />
          <col style="width: 100px;" />
          <col style="width: 100px;" />
          <col style="width: 100px;" />
          <col style="width: 100px;" />
          <col style="width: 100px;" />
          <col style="width: 100px;" />
        </colgroup>
        <thead>
          <tr class="firstHead">
            <th rowspan="3"> 序号 </th>
            <th rowspan="3"> 项目名称 </th>
            <th rowspan="3"> 自有资金 </th>
            <th rowspan="1" colspan="6"> 本年计划投资额 </th>
            <th rowspan="3"> 备注 </th>
          </tr>
          <tr class="secondHead">
            <th rowspan="3"> 合计 </th>
            <th colspan="3"> 其中: </th>
            <th colspan="2"> 其中: </th>
          </tr>
          <tr class="thirdHead">
            <th> 自有资金 </th>
            <th> 对外贷款 </th>
            <th> 其他 </th>
            <th> 主业 </th>
            <th> 非主业 </th>
          </tr>
        </thead>
        <tbody>
          <tr>
            <td></td>
            <td></td>
            <td></td>
            <td></td>
            <td></td>
            <td></td>
            <td></td>
            <td></td>
            <td></td>
            <td></td>
          </tr>
        </tbody>
      </table>
    </div>
  </body>
</body>

</html>

在这里插入图片描述

■ 四级表头

<!DOCTYPE html>
<html lang="en">

<head>
  <meta charset="UTF-8">
  <meta http-equiv="X-UA-Compatible" content="IE=edge">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>四级表头</title>
  <style type="text/css">
    td,
    th {
      font-style: normal;
      font-weight: normal;
      text-align: center;
    }

    tr {
      height: 48px;
    }

    .firstHead,
    .secondHead,
    .thirdHead {
      height: 42px;
    }

    .fourthHead {
      height: 64px;
    }

    .firstHead th {
      font-size: 15px;
      font-weight: bold;
    }

    table {
      border: none;
      border-collapse: collapse;
      border-color: #D8DFE6;
    }

    table thead {
      background: #F3FDFF;
    }

    table tbody td {
      width: 6.3%;
    }

    table tbody tr {
      height: 50px;
    }
  </style>
</head>

<body>
  <div class="table">
    <table border="1" width="100%">
      <thead>
        <tr class="firstHead">
          <th colspan="1" rowspan="5" width="4%">序号</th>
          <th colspan="1" rowspan="5" width="6.4%">终端使用人</th>
          <th colspan="11">工作开展情况</th>
        </tr>
        <tr class="secondHead">
          <th colspan="1" rowspan="4">工作量总计</th>
          <th colspan="6">采集情况</th>
          <th colspan="4">检查情况</th>
        </tr>
        <tr class="thirdHead">
          <th colspan="3" rowspan="1">人口</th>
          <th colspan="3" rowspan="1">房屋</th>
          <th colspan="4" rowspan="1">房屋隐患</th>
        </tr>
        <tr class="fourthHead">
          <th>总数</th>
          <th>户籍</th>
          <th>流动</th>
          <th>总数</th>
          <th>机动车</th>
          <th>非机动车</th>
          <th>总数</th>
          <th>生活安全</th>
          <th>出租管理</th>
          <th>房屋功能</th>
        </tr>
      </thead>
      <tbody>
        <tr>
          <td></td>
          <td></td>
          <td></td>
          <td></td>
          <td></td>
          <td></td>
          <td></td>
          <td></td>
          <td></td>
          <td></td>
          <td></td>
          <td></td>
          <td></td>
        </tr>
      </tbody>
    </table>
  </div>
</body>

</html>

在这里插入图片描述

Vue原生table表格表头固定,可以通过CSS的position属性和JS的scroll事件来实现。 首先,在table标签外面嵌套一个div容器,设置其样式为position: relative,用于容纳表格表头。 然后,在表格表头的tr标签上添加一个ref属性,用于在JS中获取该元素。 接下来,使用JS监听div容器的scroll事件,在事件中通过ref获取到表头元素,并获取该元素的offsetTop和scrollTop属性值。 然后,判断scrollTop是否大于或等于offsetTop,如果是则添加一个css类或样式,将表头固定在顶部;如果不是,则移除该类或样式。 最后,将改变样式的操作放在一个debounce的函数中,用于优化滚动事件的性能。 具体代码如下: <template> <div class="container" ref="container" @scroll="handleScroll"> <table class="table"> <thead> <tr ref="thead"> <th>表头1</th> <th>表头2</th> <th>表头3</th> </tr> </thead> <tbody> <tr> <td>内容1</td> <td>内容2</td> <td>内容3</td> </tr> ... </tbody> </table> </div> </template> <script> export default { methods: { handleScroll() { const container = this.$refs.container; const thead = this.$refs.thead; const offsetTop = thead.offsetTop; const scrollTop = container.scrollTop; if (scrollTop >= offsetTop) { thead.classList.add("fixed"); } else { thead.classList.remove("fixed"); } }, }, }; </script> <style> .container { position: relative; max-height: 300px; overflow-y: scroll; } .fixed { position: fixed; top: 0; left: 0; width: 100%; z-index: 999; } .table { width: 100%; } /* 省略其他样式 */ </style> 以上就是利用Vue原生实现table表格表头固定的方法。通过设置CSS样式和监听scroll事件,可以在滚动时使表头保持在页面顶部。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值