gpt4 book ai didi

javascript - 展开表格隐藏表格行

转载 作者:行者123 更新时间:2023-12-01 00:53:58 26 4
gpt4 key购买 nike

我想在单击上面的行时展开隐藏行

$(".main").click(function () {
$(this).next("tr").show();
});
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>

<tr class="row100 body main">
<td class="cell100 column1" >39</td>
<td class="cell100 column2" s>900,000</td>
</tr>
<tr class="row100 body sub" style="display:none;">
<td class="cell100 column1" >exa</td>
<td class="cell100 column2" >lura</td>
</tr>

最佳答案

您没有表格标签,包含它即可

$(".main").click(function () {
$(this).next('tr').show();
});

$(".main").click(function () {
$(this).next('tr').show();
});
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<table>
<tr class="row100 body main">
<td class="cell100 column1" >39</td>
<td class="cell100 column2" s>900,000</td>
</tr>
<tr class="row100 body sub" style="display:none;">
<td class="cell100 column1" >exa</td>
<td class="cell100 column2" >lura</td>
</tr>

</table>

关于javascript - 展开表格隐藏表格行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56747888/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com