我有一个充满数据的表。每第二行是每个第一行的子行。因此,在我单击父行之前,每个子行都被隐藏。子行然后使用 jQuery 在父行下方淡入。
我将如何在父行下方缩进子行,以便它们显然是父节点的子节点?
我尝试向子行添加小元素,但这看起来不正确。当我展开第二行时,它最终会压碎第一行。
我希望这听起来不像是胡言乱语...
//HTML & CSS
<table>
<tr>
<th id="clickDiv3"></th>
<th>Firstname</th>
<th>Lastname</th>
</tr>
<tr>
<th></th>
<td class="showThird">Peter</td>
<td class="showThird">Griffin</td>
</tr>
<tr>
<th></th>
<td class="showThird">Lois</td>
<td class="showThird">Griffin</td>
</tr>
</table>
//JS
$("#clickDiv3").click(function(){
$(".showThird").slideDown(".500").fadeIn(".200");
});
任何帮助或建议将不胜感激!