<thead>
一张桌子设置好后position:fixed
,宽度就不一样了<tbody> <td>
。我试图用这个 jQuery 代码解决这个问题:
$("#table tbody td:first td").each(function(i) {
$("#table thead th:last th").eq(i).width($(this).outerWidth());
});
但它不起作用。为什么将位置设置为固定后宽度消失了?
<thead>
一张桌子设置好后position:fixed
,宽度就不一样了<tbody> <td>
。我试图用这个 jQuery 代码解决这个问题:
$("#table tbody td:first td").each(function(i) {
$("#table thead th:last th").eq(i).width($(this).outerWidth());
});
但它不起作用。为什么将位置设置为固定后宽度消失了?