码迷,mamicode.com
首页 > Web开发 > 详细

js表头标题固定

时间:2019-12-17 15:14:04      阅读:115      评论:0      收藏:0      [点我收藏+]

标签:默认   out   固定   UNC   val   高度   自定义   lld   按钮   

1.

//表头跟踪固定(按钮与表头)
var trObj = $("#zdy_id").find("tr:eq(3)");//自定义zdy_id,处于第3行
var trObjChild = $(trObj).children();
var topValue = 0;

var trObj_hj = $("#zdy_id").find("tr:eq(4)");
var trObjChild_hj = $(trObj_hj).children();

trObjChild.css({ position: "relative", "z-Index": 999 });
trObjChild_hj.css({ position: "relative", "z-Index": 999 });
$("#scrollDiv").scroll(function () {//默认
    topValue = $(this).attr("scrollTop");
    if (topValue <= 21) {
        topValue = 0;
    }
    else {
        topValue = topValue - 110;//这个高度可自己设置
    }
    setTimeout(function () {
        trObjChild.css({ top: topValue + "px" });
        trObjChild_hj.css({ top: topValue + "px" });
    }, 0);

});

js表头标题固定

标签:默认   out   固定   UNC   val   高度   自定义   lld   按钮   

原文地址:https://www.cnblogs.com/chenze-Index/p/12054292.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!