的jQuery
$(".drop-down h3").click(function(e) {
e.preventDefault();
$(this).parent(".drop-down").find($("ul")).stop().slideToggle();
$(this).parent(".drop-down").find($(".divider-aside")).stop().toggle("slow");
$(this).parent(".drop-down").find($(".arrow")).stop().toggleClass("rotate1 rotate2");
});
HTML
<div id="categories">
<div class="drop-down">
<h3>Categories</h3>
</div>
<div class="divider-aside"></div>
<ul>
<li>123</li>
<li>12323</li>
<li>1231</li>
<li>523</li>
<li>31</li>
</ul>
</div>
我想通过点击.drop-down
隐藏<h3>
课程中除<h3>
之外的所有内容。在这种情况下,只有.arrow
toggleClass可以工作。
答案 0 :(得分:3)
使用closest
代替parent
$(this).closest(".categories")
父母只会返回1级,即直接父级。但是你必须得到包含所有3个元素的容器
所以$(this).parent(".drop-down")
应该是
$(this).parent().parent() // this will break if there is an extra
// parent container gets added
或强>
$(this).closest(".categories") // This will work even if the no of
// parent container keep chaning
答案 1 :(得分:0)
如果你需要切换它们,除了.drop-down .siblings就是你需要的东西
$("div.drop-down > h3").click(function(){
var $t = $(this);
$t.parent().siblings().toggle();
});