我有以下jQuery,它允许我将一个表的标题中的宽度和类更新到另一个表的数据单元格。
目前以下只更新了另一个表中的第一行,但我需要它来更新另一个表中的所有宽度和类以保持一致性:(
$($orginalHeaders).each(function(index) {
$headWidth = $(this).attr('width');
$headClass = $(this).attr('class');
$('#quotations').find('tbody tr td:eq(' + index + ')').attr({
width: $headWidth,
class: $headClass
});
});
答案 0 :(得分:1)
尝试
$('#quotations tbody tr').each(function(){
$(this).find('td:eq(' + index + ')').css('width', $headWidth).addClass($headClass);
});