我在一个表中有一个嵌套表,nestedTable
即使它存在于 html 中并且显示不是没有,它也不会显示在 IE7 中。下面是我的 html,它似乎在 Firefox、Chrome 和 IE8 中有效并且可以工作:
<table id="myTable">
<thead> ... </thead>
<tbody class="myTbody1">
<tr class="details">
<td>
<table id="nestedTable">
<thead>
<tr>
<th> Col1 </th>
<th> Col2 </th>
</tr>
</thead>
<tbody class="head">
<tr class="nestedRow">
<td> Data</td>
<td> Data</td>
</tr>
</tbody>
</table>
</td>
</tr>
</tbody>
<tbody class="myTbody2">..</tbody>
<tbody class="myTbody3">..</tbody>
</table>