jQuery将一个表标题的属性复制到另一个表中的所有表数据单元格

时间:2010-10-14 10:57:59

标签: jquery css dhtml

我有以下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
    });
});

1 个答案:

答案 0 :(得分:1)

尝试

$('#quotations tbody tr').each(function(){
    $(this).find('td:eq(' + index + ')').css('width', $headWidth).addClass($headClass);        
});