我设法将表格行展开并隐藏,但是当我添加另一行时,它就像所有行一起折叠。
你的帮助非常感谢。
JS
$('#more').on('click',function(event){
$(this).closest('tr').nextAll('.hidden-row').toggle();
});
以下是DEMO
答案 0 :(得分:1)
您正在使用 nexAll()
选择旁边的所有.hidden-row
兄弟姐妹,要立即使用下一个兄弟 next()
代替。此外,您对td使用相同的id
,它应该是唯一的,因此只能选择第一个元素。对于元素组,始终使用class
。
$('.more').on('click', function(event) {
$(this).closest('tr').next().toggle();
});
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<table>
<tr>
<td><a class="more" href="#">section</a>
</td>
</tr>
<tr class="hidden-row">
<td colspan="10">Hahaha</td>
</tr>
<tr>
<td><a class="more" href="#">more</a>
</td>
</tr>
<tr class="hidden-row">
<td colspan="10">Hahaha</td>
</tr>
</table>
答案 1 :(得分:0)