我正在使用 jQuery 过滤页面上的产品项目(隐藏和显示 DIV) 我使用过滤器作为替代品,因为 PHP $_GET 有点过时,我们正试图通过 jQuery 来做到这一点。我使用 filter() 和数据属性。
如何关闭除现有项目之外的当前复选框选择?如何根据选择隐藏项目并在不隐藏时取消隐藏?
HTML
<input type="checkbox" id="drama" onClick="filterCategory(this.value)" value="drama" /> Drama<br />
<input type="checkbox" id="romance" onClick="filterCategory(this.value)" value="" /> Romance<br />
<input type="checkbox" id="horror" onClick="filterCategory(this.value)" value="horror" /> Horror<br />
<!--------------------->
<div class="products">
<div class="productItem" data-price="250" data-category="horror">
Scary Book
<div class="productItemPrice"><span>£250</span></div>
</div>
<div class="productItem" data-price="150" data-category="drama">
Drama Poems
<div class="productItemPrice"><span>£150</span></div>
</div>
<div class="productItem" data-price="250" data-category="romance">
Love Story
<div class="productItemPrice"><span>£250</span></div>
</div>
<div class="productItem" data-price="241" data-category="horror">
Creep Book
<div class="productItemPrice"><span>£241</span></div>
</div>
</div>
<!--------------------->
查询
function filterCategory(id) {
var pid=$(".productItem"); // Which product is it
var checkid=$('#'+id); // The name of the checkbox form
var cid=$(pid).data("category"); // The value of the checkbox form
if ($(checkid).is(':checked')){
$(pid).hide().filter(function () {var catId=$(this).data("category");return catId;}).show();
} else {
$(pid).show().filter(function () {var catId=$(this).data("category");return catId;}).show();
}
}
CSS
.productItem{float:left;padding:5px;margin:5px;border:1px solid #eaeaea}
body{font-family:verdana}