我已经修复了这个小提琴中给出的 html 表的列。同样,我试图只修复表格的标题行,
var $table = $('.table');
var $fixedColumn = $table.clone().insertBefore($table).addClass('fixed-column');
$fixedColumn.find('tbody').remove();
$fixedColumn.find('thead th').each(function (i, elem) {
$(this).width($table.find('tbody tr:first td:eq(' + i + ')').width());
});
这是在这个小提琴中给出的。但是标题没有固定。什么不见了?