zoukankan      html  css  js  c++  java
  • js简单固定table表头及css问题分析。

    <head>
        <meta name="viewport" content="width=device-width" />
        <title>Test02</title>
        <script src="~/Content/js/jquery-1.7.2.min.js"></script>
        <script>
            $(document).ready(function () {
                $("#tabhead").css("width", $("#MyTable").css("width"));
                $("#tabdiv").scroll(function () { // 滚动条移动事件
                    var yheight = $("#tabdiv").scrollTop(); // 滚动条距顶端的距离
                    $("#tabhead").css("top", yheight + "px");
                });
            });
        </script>
    </head>
    <body>
        <div id="tabdiv" style=" 500px; height: 150px; overflow: auto; position: relative; ">
            <table id="MyTable" style=" text-align: center; table-layout: fixed;  100%;margin-top:50px;">
                <col width="105" />
                <col width="105" />
                <col width="70" />
                <col width="70" />
                <col width="70" />
                <col width="80" />
                <col width="80" />
                <col width="80" />
                <thead id="tabhead" style="position: absolute;100%; top:0px;background-color:lightblue;">
                    <tr style="">
                        <th colspan="2" style=" 210px;"><input type="checkbox" class="chbAll" checked="checked">课程</th>
                        <th style="70px;">总分</th>
                        <th style=" 70px;">总分排名</th>
                        <th style=" 70px;">平均分</th>
                        <th style=" 80px;">平均分排名</th>
                        <th style=" 80px;"> <input type="checkbox" class="chbKC" checked="checked">数学<br>百分制</th>
                        <th style=" 80px;"> <input type="checkbox" class="chbKC" checked="checked">语文<br>等级制</th>
                    </tr>
                </thead>
                <tbody>
                    <tr>
                        <td>---</td>
                        <td>---</td>
                        <td>---</td>
                        <td>---</td>
                        <td>---</td>
                        <td>---</td>
                        <td>---</td>
                        <td>---</td>
                    </tr>
                </tbody>
            </table>
    </div> </body>

    只用几行js,加几个css样式。不用贴层或改动表结构。(测试时请多加几行tr)

    结果如图:上下滚动,thead不动;左右滚动,thead跟随移动

    分析:

    将thead 设为absolute定位,使之脱离文档流,再获取垂直滚动条距离顶部的滚动距离,作为thead 的top位置,并实时同步。

    问题一:thead 脱离文档流后,超出tabdiv不会隐藏,且tbody上部会被遮挡。

    解决:1,将tabdiv设为relative或absolute定位;2,为table加上上边距来抵消thead的高度,margin-top:50px;。

    问题二:table超出div宽度后,tbody单元格会自动被压缩。

    解决:table 样式加上table-layout: fixed;  100%;

    并通过<col />元素来设置每列宽度。

    问题三:thead超出div宽度后,thead单元格会自动被压缩,而tbody正常显示。

    解决:js中直接将thead的宽度设为table的宽度,$("#tabhead").css("width", $("#MyTable").css("width"));

  • 相关阅读:
    windows笔记进程的句柄
    windows笔记创建线程的函数CreateThread
    c#实现从其他网站抓取imei码信息,手工输入验证码
    Linux下自动修改用户密码的方法(直接通过命令而不是在终端输入密码)
    Redis学习笔记List数据类型
    在Linux(centos)上安装PHP的mongodb扩展
    CI(codeigniter)如何防止sql注入
    MongoDB增加用户认证: 增加用户、删除用户、修改用户密码、读写权限、只读权限
    Sublime Text编辑器如何显示顶部的菜单栏
    C#图片选择器
  • 原文地址:https://www.cnblogs.com/ariter/p/5970298.html
Copyright © 2011-2022 走看看