我需要帮助制作此代码
<select id="fruit" class="friltro">
<option value="all">All fruits</option>
<option value="apple">apple</option>
<option value="orange">orange</option>
<option value="pineapple">pineapple</option>
</select>
<select id="price" class="friltro">
<option value="all">All prices</option>
<option value="1">$1</option>
<option value="3">$3</option>
<option valenter code hereue="4">$4</option>
</select>
进入单独的复选框,这是我到目前为止所拥有的
<input type="checkbox" id="price" value="all" class="filtro" >
<label for="filtro" >all</label>
<input type="checkbox" id="apple" value="apple" class="filtro" >
<label for="filtro" >apple</label>
但它根本不起作用,但当我尝试将其设置为复选框时,它会停止工作。
这里也是jquery代码
$('.friltro').change(function () {
var criteria = '';
var showAll = true;
$('.friltro').each(function () {
var val = $(this).children(':selected').val();
if (val !== 'all') {
criteria += '.' + $(this).attr('id') + '-' + val;
showAll = false;
}
});
if (showAll) {
$('.item').show();
} else {
$('.item').hide();
$(criteria).show();
}
});</p>
这也是我要过滤的内容
<div class="item apple 1>
Apple $1
</div>
<div class="item orange 4">
An orange that costs 4 dollars
</div>
我知道被过滤的东西非常简单,但是一旦脚本工作,我将添加图像 css。任何人都可以帮忙吗?