jquery.fixedheadertable 經測試在固定1列和2列時是對齊的,2列以上明顯不對齊,須要js作調整javascript
$(document).ready(function(){ var thhead=$(".fht-fixed-column .fht-thead th"); var thbody=$(".fht-fixed-column .fht-tbody tr:eq(0) td"); for(i=0;i<thhead.length;i++) { if(thhead.eq(i).width()<thbody.eq(i).width()){ thhead.eq(i).width(thbody.eq(i).width()); }else{ thbody.eq(i).width(thhead.eq(i).width()); } } });
var thhead=$(".fht-fixed-column .fht-thead th");java
也能夠寫成var thhead=$(".fht-fixed-column .fht-thead ").find("th");jquery
find()是找全部的後代測試
children()只是下一級的後代code