我this code基于this solution,但它似乎对我不起作用。
我希望能够:
TD
行相同。我对JavaScript很陌生,所以我不知道我错过了什么。滚动部分正在工作,但不在jsfiddle中。如何使TH
宽度与TD
相同?
编辑1:
代码
<html>
<head>
<style>
.outerDIV {
position: relative;
padding-top: 30px; //height of your thead
}
.innerDIV {
overflow: auto;
max-height: 200; //the actual scrolling container
}
table thead {
display: block;
position: absolute;
top: 0;
left: 0;
}
table tbody {
display: block;
}
</style>
<script>
function scrollingTableSetThWidth(tableId)
{
var table = document.getElementById(tableId);
ths = table.getElementsByTagName('th');
tds = table.getElementsByTagName('td');
if(ths.length > 0) {
for(i=0; i < ths.length; i++) {
ths[i].style.width = getCurrentComputedStyle(tds[i], 'width');
}
}
}
function getCurrentComputedStyle(element, attribute)
{
var attributeValue;
if (window.getComputedStyle)
{ // class A browsers
var styledeclaration = document.defaultView.getComputedStyle(element, null);
attributeValue = styledeclaration.getPropertyValue(attribute);
} else if (element.currentStyle) { // IE
attributeValue = element.currentStyle[vclToCamelCases(attribute)];
}
return attributeValue;
}
</script>
</head>
<body>
<div class="outerDIV">
<div class="innerDIV">
<table border="1">
<thead>
<tr>
<div><th>Column1</th><th>Column2</th><th>Column3</th></div>
</tr>
</thead>
<tbody>
<tr>
<td>Line1Cell1</td><td>Line1Cell2</td><td>Line1Cell3</td>
</tr>
<tr>
<td>Line2Cell1</td><td>Line2Cell2</td><td>Line2Cell3</td>
</tr>
<tr>
<td>Line3Cell1</td><td>Line3Cell2</td><td>Line3Cell3</td>
</tr>
<tr>
<td>Line4Cell1</td><td>Line4Cell2</td><td>Line4Cell3</td>
</tr>
<tr>
<td>Line5Cell1</td><td>Line5Cell2</td><td>Line5Cell3</td>
</tr>
<tr>
<td>Line6Cell1</td><td>Line6Cell2</td><td>Line6Cell3</td>
</tr>
<tr>
<td>Line7Cell1</td><td>Line7Cell2</td><td>Line7Cell3</td>
</tr>
<tr>
<td>Line8Cell1</td><td>Line8Cell2</td><td>Line8Cell3</td>
</tr>
<tr>
<td>Line9Cell1</td><td>Line9Cell2</td><td>Line9Cell3</td>
</tr>
<tr>
<td>Line10Cell1</td><td>Line10Cell2</td><td>Line10Cell3</td>
</tr>
</tbody>
</table>
</div>
</div>
</body>
</html>
答案 0 :(得分:3)
滚动不起作用的原因是因为你的.innerDiv max-height属性没有任何单位。
为了使标题的宽度与表格相匹配,如果您可以通过CSS设置<th>
和<td>
单元格的宽度,则不需要javascript。
请参阅:http://jsfiddle.net/MVxZb/10/
编辑:更新链接。忘了删除不必要的javascript。
答案 1 :(得分:2)
你的问题不是javascript是html 你需要将你的标题和你的表分成两个不同的容器 没有在sam容器下分组的标题,所以基本上你可以做到
<div style="width:200px">
<table style="width:100%">
<tr><th>header</th></tr>
</table>
<div>
<div style="width:200px; height:100px; overflow:auto">
<table style="width:100%">
<tr>
<td>value</td>
</tr>
</table>
<div>
喜欢在这里演示
答案 2 :(得分:1)
您需要为width
位置的元素集提供absolute
。
为了更好看,宽度应该小1甚至更小(滚动条的平均宽度)。
如果所有列的宽度均匀分布,您可以执行以下操作:http://jsfiddle.net/MVxZb/9/
.outerDIV {
position: relative;
padding-top: 30px;
display:inline-block;
}
.innerDIV {
overflow: auto;
max-height: 150px;
padding-right:1.1em;
margin-right:-1.1em;
}
table thead {
display:table;
width:100%;
border:solid 1px gray;
box-sizing:border-box;
position: absolute;
border-bottom:0;
top: 0;
left: 0;
right:0;
}
如果th和tds没有设置宽度,则可以使用table-layout:fixed;
将均匀宽度扩展到列。
答案 3 :(得分:1)
每当我需要保持表格的标题固定时,我就用这个。我也很欣赏其他解决方案。
这是fiddle。
table th,
table td {
padding: 10px;
width: 100px;
}
.fixed-header{
position: fixed;
background: #fff;
}
.container{
height: 402px;
overflow: auto;
}