gpt4 book ai didi

javascript - 产品上的 jQuery 输入复选框过滤器

转载 作者:太空宇宙 更新时间:2023-11-03 23:44:25 25 4
gpt4 key购买 nike

我编写了一个小脚本,当前仅在单击复选框时在产品上运行 hide()。我似乎无法弄清楚如何在单击时只显示那些具有这些类名的特定产品。如果未单击任何内容,应显示所有产品。

JSFIDDLE: http://jsfiddle.net/mzvNL/

HTML:

<ul>
<li class="menu-item">
<label for="beans-palak">Beans Palak</label>
<input id="beans-palak" type="checkbox" />
<label for="bengal-lentils">Bengal Lentils</label>
<input id="bengal-lentils" type="checkbox" />
<label for="bombay-potatoes">Bombay-Potatoes</label>
<input id="bombay-potatoes" type="checkbox" />
</li>

<article class="post beans-palak">asd</article>
<article class="post bombay-potatoes">asd</article>
<article class="post bengal-lentils">asd</article>
<article class="post bombay-potatoes bengal-lentils">asd</article>
<article class="post bengal-lentils bombay-potatoes bengal-lentils">asd</article>

CSS:

article {
height: 100px;
width: 100px;
background: red;
margin: 10px;
display: inline-block;

JS:

$(document).ready(function () {
$('.post').show();

$('.menu-item').find('input:checkbox').on('click', function () {
$('.post').hide();

$('.menu-item').find('input:checked').each(function () {
$('.post ' + $('li.menu-item').find('input:checked').attr('id')).show();
});
});
});

最佳答案

正确添加检查和按类过滤

$(document).ready(function () {
$('.post').show();

$('.menu-item').find('input:checkbox').on('click', function () {
var post = $('.post').hide();

var elements = $('.menu-item').find('input:checked');

if(elements.length){
elements.each(function () {
post.filter('.' + this.id).show();
});
}
else
post.show();
});
});

http://jsfiddle.net/mzvNL/1/

关于javascript - 产品上的 jQuery 输入复选框过滤器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21918825/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com