在javascript中以百分比而不是像素计算表格宽度

时间:2016-10-27 07:18:13

标签: javascript jquery html

如何以百分比计算表格宽度并使用javascript将该宽度分配给表格tst td?

d+d

1 个答案:

答案 0 :(得分:1)

您可能需要在thead上的当前循环中编写一个循环:

 $('#headerwidth').find('thead th').each(function(){
     var rowval = $(this).outerWidth()+'px' ;
     $('#headerwidth').find('tbody tr td').each(function(){
        $(this).css("width", rowval)
     });
});