两个表之间的jquery同步表宽度

时间:2012-08-15 16:44:55

标签: jquery html

大家好我有2个表...无论如何在jQuery中使表@动态地与表1的宽度相同?如果我可以将表2中td的宽度设置为表1的宽度......它们将完美排列...谢谢

<table id="t1" align="center" class="data_table" style="border-bottom-style: none;  margin-bottom: 0px;">      
    <tr>        
        <th>        
        </th>    
    </tr> 
</table>  
<table id="t2" align="center" class="data_table" style="border-top-style: none; margin-top: 0px;">       
    <tr>         
        <th colspan="9 title="Source of Repair (SOR) Remarks">SOR Remarks</th>
    </tr>
    <tr>         
        <td width="845px" colspan="9">            
            <textarea name="mcRemark" rows="7" cols="100" scrolling="auto">${mcRemark}   </textarea>        
        </td>    
    </tr> 
</table> 

2 个答案:

答案 0 :(得分:1)

尝试:

     $('#t2').width($('#t1').width());

     $('#t2 td').width($('#t1').width());

我没有#39;要了解您正在寻找的替代方案。 祝你好运。

答案 1 :(得分:0)

也许您应该考虑开始使用colgroup,您可以在其中定义所有列应继承的任何自定义样式。因此,如果您坚持这两个表的设置,那么它应该像魅力一样。