laertejjunior / freezeheader

A simple jquery plugin to freeze header row in html table.
MIT License
115 stars 93 forks source link

表头无法对齐 #24

Open yanwuyue opened 2 years ago

yanwuyue commented 2 years ago
var cellWidth = obj.grid.find('th').eq(index).width();
$(this).css('width', cellWidth);`

css('width') 和 width() 不完全一样

var cellWidth = obj.grid.find('th').eq(index).width();
$(this).width(cellWidth);`
var cellWidth = obj.grid.find('th').eq(index).css('width');
$(this).css('width', cellWidth);`