我找到了这个链接,我得到了这个代码:
$(document).ready(function(){
//when a link in the filters div is clicked...
$('#filters a').click(function(e){
//prevent the default behaviour of the link
e.preventDefault();
//get the id of the clicked link(which is equal to classes of our content
var filter = $(this).attr('id');
//show all the list items(this is needed to get the hidden ones shown)
$('#content ul li').show();
/*using the :not attribute and the filter class in it we are selecting
only the list items that don't have that class and hide them '*/
$('#content ul li:not(.' + filter + ')').hide();
});
});
它工作正常,但我在选择按钮中使用此代码。当我选择该选项时,它过滤正常。但是我有不止一个选择 - 实际上是 5 个 - 但我不知道在这种情况下如何处理。
示例:
项目:草莓、苹果、樱桃、橙子、香蕉、葡萄
选择 1 - 所有水果、红色、绿色等
选择 2 - 所有形式、圆形、三角形。
选择 3 - 完全是另一回事,另一回事
用户可以先选择红色 - First Filter。
然后他可以选择圆形,所以苹果和樱桃就是答案。
我已经尝试仅过滤可见图像,但是当我尝试将信息带回时发生了一些错误。
在与结果苹果和樱桃相同的示例中,如果用户选择所有水果,则结果必须是苹果、樱桃、橙子和葡萄。
一些忠告?
这是一个示例代码 请注意,过滤器以隔离方式工作。