我正在尝试通过使用给定的关键字按钮在其他静态项目列表上进行过滤来构建一个简单的缩小范围。
这些按钮在一个无序列表中,当被选中时,将类“.selected-tag-button”添加到它们中。
这些项目是具有类“.item”的div,并在它们处于活动状态时获得类“.included-item”。div 内部是另一个 UL,其中包含与按钮上的文本节点匹配的关键字的列表项。
现在它正在工作,除了使用仅包含单击按钮的关键字的“buttonName”之外,我想使用包含所有选定关键字的数组的“buttonArray”。
我想我需要某种功能,但我不知道从哪里开始。如果选择了多个,我希望结果仅限于包含所有选定关键词的项目。我能够弄清楚的所有解决方案都将返回包含数组中任何关键字的 div。
$(document).ready(function() {
$("li.tag-button").on("click", function() {
// Toggle button
$(this).toggleClass("selected-tag-button");
// Remove included-item class from all items
$(".item" ).removeClass("included-item");
// Pass the button text into variable
var buttonName = $(this).text().slice(2);
// Create array with button text for all active buttons
var buttonArray = $(".selected-tag-button").map(function() {
return $(this).text().slice(2);
}).get();
console.log(buttonArray);
// Add included-item class to divs containing the button text
$('li:contains("' + buttonName + '")').parents().parents().addClass("included-item");
// If all buttons are inactive, add included-item class to all items
if ($(".selected-tag-button").length == 0 ) {
$(".item" ).addClass("included-item");
}
});
});