如何使一个表格跟随另一表格的行高列宽变化而变化?劳烦各位朋友了!
如何使得第二个表列行高列宽改变时(改变原因为单元格内的内容有变化),第一个表也随着 改变?谢谢~~
有朋友见议放在同一个表中,但是我的两个表在页面的不同位置~~~
期待朋友们的指点,在此先谢谢各位了!~~
<body>
<div class="rightPanel">
<div class="rightTop" id="rightTop">
<div class="rightTitle">
<table width="800">
<tr height="30px">
<th width="3%">1</th>
<th width="3%">2</th>
<th width="3%">3</th>
</tr>
<tr height="30px">
<th width="3%">非固定A</th>
<th width="3%">非固定B</th>
<th width="3%">非固定C</th>
</tr>
</table>
</div>
</div>
<div class="rightContent" id="rightContent" onscroll="jscroll()">
<table width="800">
<tr height="30px">
<td width="3%">1</td>
<td width="3%">2</td>
<td width="3%">3</td>
</tr>
<tr>
<td> </td>
<td> </td>
<td> </td>
</tr>
<tr>
<td> </td>
<td> </td>
<td> </td>
</tr>
<tr>
<td> </td>
<td> </td>
<td> </td>
</tr>
</table>
</div>
</div>
</body>