gpt4 book ai didi

javascript - 修复头部时 Bootstrap 滚动表中断

转载 作者:行者123 更新时间:2023-11-28 05:53:09 25 4
gpt4 key购买 nike

我想在滚动时修复表头。页面内容的其余部分滚动。但是表格的原始布局中断了。表格列和行的宽度大小不同。我无法解决这个问题。

我的代码:

HTML

<section class="scrollable padder">
<table class="table table-striped m-b-none text-sm m-t">
<thead class="ff">
<tr>
<th >1col</th>
<th >2col</th>
</tr>
</thead>
<tbody>
<tr>
<td class="new_td">field1</td>
<td class="new_td">field2</td>
</td>
</tbody>
</table>
</section>

JS

    $(".padder").scroll(function() {
if ($(".padder").scrollTop() > 100) {
$('.ff').addClass('fixed');
}
else
{
$('.ff').removeClass('fixed');
}
});

CSS

.fixed{    
position:fixed;
top:50px;
}

最佳答案

试试这个标签,让我知道结果

<section class="scrollable padder">
<table class="table table-striped m-b-none text-sm m-t">
<thead class="ff">
<tr>
<th >1col</th>
<th >2col</th>
</tr>
</thead>
<tbody>
<tr>
<td class="new_td">field1</td>
<td class="new_td">field2</td>
</tr>
</tbody>
</table>
</section>

关于javascript - 修复头部时 Bootstrap 滚动表中断,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37210125/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com