我有一些jquery来隐藏索引页面上的内容。
小提琴中注释掉的代码是我目前拥有的 - 但如果单击任何切换链接,它会隐藏所有内容 div。
HTML
<div>
<h1>Dogs</h1>
<a class="toggle_group_name">∆</a>
</div>
<div class="group_name">
Dogs do this, that and something
</div>
<div>
<h1>Cats</h1>
<a class="toggle_group_name">∆</a>
</div>
<div class="group_name">
Cats do this, that and something different
</div>
jQuery
$(function() {
$('.toggle_group_name').click(function() {
$(this).parents("div").find('.group_name').toggle();
});
});
我只想隐藏/显示紧跟在切换链接后面的类,但不能让它工作。尝试使用parents
,nextAll
和我在 SO 上找到的类似示例中的各种其他方法,但到目前为止没有任何效果。