几年前,我创建了一个将MixItUp JS合并到内容过滤器部分的网站。我最近被要求将一个选择框集成到过滤器中,但我在使脚本使用输入和选择框时遇到问题。我可以制作一个可以过滤一个或另一个的脚本,我可以制作一个可以使用两个选择框的脚本,但我担心我还是比较新的JS,我似乎无法修改脚本尊重输入框和选择框。
所需的行为将使得输入值将用于过滤标题(如当前所做),并且选择框可用于过滤同一实例中的标记。
我正在使用的原始脚本是从博客上的示例进行修改但我无法找到源代码,因为该地址显然已被弃用。如果有人认出来,请发布以下来源。
我在下面的链接中发布了一些简化版本:
当前版本(工作):https://jsfiddle.net/ehayes/qtdj3ypq/
带标签选择的版本(不工作):https://jsfiddle.net/ehayes/t5jn1bwk/
HTML:
<div id="filterList">
<input id="filterInput" class="form-control" name="filter" placeholder="Filter..." value="" type="text"/>
<select id="filterSelect" name="tag" class="select2">
<option value="">All</option>
<option value="A">A</option>
<option value="B">B</option>
<option value="C">C</option>
<option value="D">D</option>
</select>
<div id="filterContainer">
<div class="mix" style="width:100%;">
<div class="title">
<a href="#"><h3>Title 1</h3></a>
</div>
<p>Description for Title 1</p>
<div class="tags">
<p>Tags: A, B</p>
</div>
<hr/>
</div>
<div class="mix" style="width:100%;">
<div class="title">
<a href="#"><h3>Title 2</h3></a>
</div>
<p>Description for Title 2</p>
<div class="tags">
<p>Tags: B, C</p>
</div>
<hr/>
</div>
<div class="mix" style="width:100%;">
<div class="title">
<a href="#"><h3>Title 3</h3></a>
</div>
<p>Description for Title 3</p>
<div class="tags">
<p>Tags: C, D</p>
</div>
<hr/>
</div>
JS:
$(function(){
$("#filterList").mixItUp();
var inputText;
var selectText;
var $matching = $();
// Delay function
var delay = (function(){
var timer = 0;
return function(callback, ms){
clearTimeout (timer);
timer = setTimeout(callback, ms);
};
})();
$("#filterInput").keyup(function(){
// Delay function invoked to make sure user stopped typing
delay(function(){
inputText = $("#filterInput").val().toLowerCase();
selectText = $("#filterSelect").val().toLowerCase();
// Check to see if input field is empty
if ((inputText.length) > 0 || (selectText.length) > 0) {
$( '.mix').each(function() {
$this = $("this");
//var filterString = $input.val() + $filterSelect.val();
// add item to be filtered out if input text matches items inside the title
if($(this).children('.title' + '.tags').text().toLowerCase().match(inputText)) {
$matching = $matching.add(this);
}
else {
// removes any previously matched item
$matching = $matching.not(this);
}
});
$("#filterList").mixItUp('filter', $matching);
}
else {
// resets the filter to show all item if input is empty
$("#filterList").mixItUp('filter', 'all');
}
}, 200 );
});
})
答案 0 :(得分:0)
我想出了问题。在我搜索了问题之后,我遇到了一个代码笔的帖子,它提供了我的问题的解决方案。
您可以在此处查看上述笔:http://codepen.io/anon/pen/yJgQWB
这似乎是patrickkunka在此原始笔的一个分支:https://codepen.io/patrickkunka/pen/iwcap
;)