遇到jQuery的一些问题,因为我对它很新,我有一些jQuery代码隐藏了<li>
项的过滤器菜单。但是,当我使用它时,它还会隐藏我在主菜单标题中使用的<li>
标记。
我在考虑为隐藏的<li>
分配一个特定的类名,但他们已经在使用特定的名称。 (例如,会计,快递等)
如何只隐藏特定的<li>
标签而不隐藏主菜单标题中的标签?
我可以为要隐藏的<li>
分配不同的标识符吗?
要隐藏li的HTML代码:
<div class="tags">
<div id="col">
<label>
<input type="checkbox" rel="accounting" />Accounting</label>
</div>
<div id="col">
<label>
<input type="checkbox" rel="courier" />Courier</label>
</div>
<div id="col">
<label>
<input type="checkbox" rel="project-management" />Project Management</label>
</div>
<div id="col">
<label>
<input type="checkbox" rel="video-games" />Video Games</label>
</div>
</div>
<ul class="results">
<li class="accounting" style="list-style-type:none"><a href="http://cnn.com" style="text-decoration: none">Accounting</a>
</li>
<li class="courier" style="list-style-type:none"><a href="{{ path('job1') }}" style="text-decoration: none">Courier / Parcel Delivery</a>
</li>
<li class="project-management" style="list-style-type:none"><a href="{{ path('job3') }}" style="text-decoration: none">Game QA Project Management</a>
</li>
<li class="video-games" style="list-style-type:none"><a href="http://cnn.com" style="text-decoration: none">Video Games</a>
</li>
</ul>
jQuery代码(隐藏所有li标签)
<script>
$('div.tags').find('input:checkbox').on('click', function () {
var vals = $('input:checkbox:checked').map(function () {
return $(this).attr('rel');
}).get();
$('li').hide().filter(function () {
return ($.inArray($(this).attr('class'), vals) > -1)
}).show()
if ($('input:checkbox:checked').length == 0) $('li').show()
});
</script>
答案 0 :(得分:4)
尝试改进选择器以使其更具体,如下所示:
<script>
$('div.tags').find('input:checkbox').on('click', function () {
var vals = $('input:checkbox:checked').map(function () {
return $(this).attr('rel');
}).get();
$('.results li').hide().filter(function () {
return ($.inArray($(this).attr('class'), vals) > -1)
}).show()
if ($('input:checkbox:checked').length == 0) $('.results li').show()
});
</script>
从$('li')
到$('.results li')
的更改将导致它仅选择ul
中results
类的列表元素。
答案 1 :(得分:2)