HTML:
<thead>
<tr>
<th><div style="width:36px"><textarea class="cell"></textarea></div></th>
<th><div style="width:36px"><textarea class="cell"></textarea></div></th>
</tr>
<div class="header">
<tr>
<th><div style="width:36px"><textarea class="cell">Name 1</textarea></div></th>
<th><div style="width:36px"><textarea class="cell">Name 2</textarea></div></th>
</tr>
</div>
</thead>
CSS:
div.header {
position: absolute;
}
JS:
$(window).scroll(function() {
$('div.header').css({
'top': $(this).scrollTop()
});
});
我想保留第一个假标题行以将列宽应用于表格并在滚动时移动其他行,但它们不会移动。我需要改变什么?