使用jQuery展开/折叠表行可以通过以下步骤实现:
<script src="https://cdn.jsdelivr.net/npm/jquery/dist/jquery.min.js"></script>
expandable-row
:<table>
<tr>
<th>标题</th>
<th>内容</th>
</tr>
<tr class="expandable-row">
<td>行1</td>
<td>内容1</td>
</tr>
<tr>
<td>行2</td>
<td>内容2</td>
</tr>
</table>
$(document).ready(function() {
$('.expandable-row').click(function() {
$(this).next().toggle(); // 切换下一行的显示状态
});
});
.expandable-row + tr {
display: none;
}
这样,当点击展开/折叠行时,下一行的显示状态将切换,实现了展开/折叠效果。
推荐的腾讯云相关产品:腾讯云云服务器(CVM),产品介绍链接地址:https://cloud.tencent.com/product/cvm
领取专属 10元无门槛券
手把手带您无忧上云