我有一个像这样的html表
<html>
<head>
</head>
<body>
<div>
<div>
<table>
<tr></tr> --visible row 1
<tr></tr> --show\hide on click by visible row1
<tr></tr> --show\hide on click by visible row1
</table>
</div>
<div>
<table>
<tr></tr> --visible row 2
<tr></tr> --show\hide on click by visible row2
<tr></tr> --show\hide on click by visible row2
<tr></tr> --show\hide on click by visible row2
</table>
</div>
<div>
<table>
<tr></tr> --visible row 3
<tr></tr> --show\hide on click by visible row3
</table>
</div>
<div>
</body>
</html>
我如何通过单击相应的可见行来执行 tr 的显示\隐藏。我已经看到删除下一行的示例,但是我如何在可见行的父表中显示隐藏 tr 并隐藏所有不在第一个位置的子行。
如果有人可以发布 jquery 函数,我可以解决这个问题。非常感谢。