0

HTML をレンダリングするたびに、div がテーブルから押し出されます。

div と同じ動作を得る適切な方法は何ですか? jQuery を使用してテーブルのチャンクを非表示にしようとしています。

4

1 に答える 1

0

この形式に従ってください:

<table width="200" border="1">
<tr id="1">
<td>&nbsp;</td>
<td>&nbsp;</td>
<td>&nbsp;</td>
</tr>
<tr id="2">
<td>&nbsp;</td>
<td>&nbsp;</td>
<td>&nbsp;</td>
 </tr>
<DIV>EXPANDING UPON ROW 2 AT BLOCK LEVEL But UN-effecting ROW 1 AND 3</DIV>
<tr id="3">
<td>&nbsp;</td>
<td>&nbsp;</td>
<td>&nbsp;</td>
</tr>
</table>
于 2013-01-25T12:15:50.740 に答える