我有两个表说表 1 和表 2.(都具有相同的行数)
对于表 1 中的每一行,我希望将表 2 中相应单元格的高度设置为等于表 1 中相应单元格的高度。即 table2-row1-col1 = table1-row1-col1 等。

请帮我 。

最佳答案

使用 .each 循环第一个 table 中的行,并使用 .eq() 选择 table-2 行对应每个 table-1 行:

$('#table1 tr').each(function(i,el) {
    var hgt = $(this).height();
    $('#table2 tr').eq(i).height(hgt);
});

http://jsfiddle.net/mblase75/sCdRk/

关于javascript - 使用 jquery 或 javascript 更改表格单元格的高度属性值,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/8153304/

10-12 05:56