gpt4 book ai didi

javascript - 表格的 CSS 或 JavaScript (JQuery) Stickyheader

转载 作者:行者123 更新时间:2023-11-30 16:13:32 25 4
gpt4 key购买 nike

基本上,有很多关于 float header 的示例。我使用了一种 javascript 方法,它适用于包含几行 (100-150) 的表。一旦它达到 600-700+ 行,javascript 就会继续加载,并且可能在 10-15 秒后您会看到结果。

现在您可以想象这对用户来说并不友好,因为对于我的客户而言,耐心是很少见的。

我猜测脚本运行速度较慢的原因是它无法处理大量数据。脚本必须克隆表格并删除其中一个表格的头部和另一个表格的主体 - 从而可以滚动浏览内容并看到粘性标题。

总结一下并明确我的问题:创建带有粘性( float )标题的表格的最有效方法(在速度方面有效)是什么?甚至可以仅使用 CSS 来实现而不必使用 JS 吗?

谢谢

最佳答案

诀窍在于 th 和包装器 div.container 中的 div

因此,“stick” header 实际上是 th 中的 div。他们坚持是因为他们的 position:absolute 和滚动条属于包装器。

这绝对不是通用的解决方案,但它可以作为更简单情况的解决方案。

var rows = $('tbody tr');
for (var i = 0; i < 300; i++) {
rows.clone().appendTo($('tbody'));
}
html, body{
margin:0;
padding:0;
height:100%;
}
section {
position: relative;
border: 1px solid #000;
padding-top: 37px;
background: #500;
}
section.positioned {
position: absolute;
top:100px;
left:100px;
width:800px;
box-shadow: 0 0 15px #333;
}
.container {
overflow-y: auto;
height: 200px;
}
table {
border-spacing: 0;
width:100%;
}
td + td {
border-left:1px solid #eee;
}
td, th {
border-bottom:1px solid #eee;
background: #ddd;
color: #000;
padding: 10px 25px;
}
th {
height: 0;
line-height: 0;
padding-top: 0;
padding-bottom: 0;
color: transparent;
border: none;
white-space: nowrap;
}
th div{
position: absolute;
background: transparent;
color: #fff;
padding: 9px 25px;
top: 0;
margin-left: -25px;
line-height: normal;
border-left: 1px solid #800;
}
th:first-child div{
border: none;
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<section class="">
<div class="container">
<table>
<thead>
<tr class="header">
<th>
Table attribute name
<div>Table attribute name</div>
</th>
<th>
Value
<div>Value</div>
</th>
<th>
Description
<div>Description</div>
</th>
</tr>
</thead>
<tbody>
<tr>
<td>align</td>
<td>left, center, right</td>
<td>Not supported in HTML5. Deprecated in HTML 4.01. Specifies the alignment of a table according to surrounding text</td>
</tr>
<tr>
<td>bgcolor</td>
<td>rgb(x,x,x), #xxxxxx, colorname</td>
<td>Not supported in HTML5. Deprecated in HTML 4.01. Specifies the background color for a table</td>
</tr>
<tr>
<td>border</td>
<td>1,""</td>
<td>Specifies whether the table cells should have borders or not</td>
</tr>
<tr>
<td>cellpadding</td>
<td>pixels</td>
<td>Not supported in HTML5. Specifies the space between the cell wall and the cell content</td>
</tr>
<tr>
<td>cellspacing</td>
<td>pixels</td>
<td>Not supported in HTML5. Specifies the space between cells</td>
</tr>
<tr>
<td>frame</td>
<td>void, above, below, hsides, lhs, rhs, vsides, box, border</td>
<td>Not supported in HTML5. Specifies which parts of the outside borders that should be visible</td>
</tr>
<tr>
<td>rules</td>
<td>none, groups, rows, cols, all</td>
<td>Not supported in HTML5. Specifies which parts of the inside borders that should be visible</td>
</tr>
<tr>
<td>summary</td>
<td>text</td>
<td>Not supported in HTML5. Specifies a summary of the content of a table</td>
</tr>
<tr>
<td>width</td>
<td>pixels, %</td>
<td>Not supported in HTML5. Specifies the width of a table</td>
</tr>
</tbody>
</table>
</div>
</section>

我不知道是谁创造了这个 fiddle ,但这是来源:(我添加的重复部分)

https://jsfiddle.net/dPixie/byB9d/3/light/

关于javascript - 表格的 CSS 或 JavaScript (JQuery) Stickyheader,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35868352/

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