0

こんにちは、私は 2 つのテーブルを持っています...とにかく jQuery で table@ を動的にテーブル 1 と同じ幅にしますか? tdテーブル 2 の幅をテーブル 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> 
4

2 に答える 2

1

試す:

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

また

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

あなたが探している選択肢がわかりませんでした。幸運を。

于 2012-08-15T16:48:25.623 に答える
0

おそらく、すべての列が継承するカスタム スタイルを定義できる colgroup の使用を開始することも検討する必要があります。

于 2014-03-18T17:57:02.447 に答える