我有一些简单的标记来绘制下拉菜单和一些不同复杂度的 div:
<select class='sel'>
<option data-opt='a'>show only 'a' boxes</option>
<option data-opt='b'>show only 'b' boxes</option>
<option data-opt='*'>show all</option>
</select>
<div class='holder'>
<div class='a'>
<div>
<p>Here is some text (A)</p>
</div>
<p>Plus more stuff in here.</p>
</div>
<div class='a'>
<p>More text (A)</p>
</div>
<div class='b'>
<p>Here is other text (B)</p>
<div><span>There is more in here!</span></div>
</div>
<div class='b'>
<p>Even more text (B)</p>
</div>
</div>
当用户从下拉列表中选择一个选项时,我想隐藏不匹配的 DIV,只显示匹配的 DIV:
$('.sel').change(function() {
opt = $(this).find(":selected").data('opt');
console.log('option chosen: '+opt);
if(opt == '*') { // select all
console.log('show all');
$('.holder').show();
} else { // hide all but this
$('.holder :not(div'+opt+')').hide();
$('.holder').find('div'+opt).show();
}
});
但是,由于某种原因,它不起作用。看起来 hide() 方法隐藏了每个元素(包括主 DIV 的子/兄弟),然后 show() 方法只显示初始 DIV。并且显示全部选项根本不起作用。因此,深度存在一些问题。我怎样才能解决这个问题?
JSFiddle:http: //jsfiddle.net/pnoeric/FjEBY/3/