因此,您在这样的无序列表中有一组列表项。
<div class="some-input-field-class">
<input type="text" name="filter" id="filter">
<label for="filter">Filter Names</label>
</div>
<ul class="my-user-collection">
<li class="thumb selectable arrow light" style="margin-bottom:-5px;"
data-image="http://cdn.tapquo.com/lungo/icon-144.png">
<strong class="name">Peter <font data-count="0" style="position:relative;top:-2px;"> </font></strong>
<small class="description">Hi!</small>
</li>
...
</ul>
您可以将其添加到您的 javascript 文件中。但是您也需要加载事件侦听器。你可能有一些事件,所以只做你需要做的。也许将它添加到另一个函数中,您可以在其中加载其余的事件侦听器。
// Load the event listener
document.querySelector('#filter').addEventListener('keyup', filterNames);
通过定位类来迭代 li 的函数,迭代数组,因为我们使用 querySelectorAll 而不是 getElementByID。-1 表示不匹配。
function filterNames(e) {
const text = e.target.value.toLowerCase();
document.querySelectorAll('.selectable').forEach(
function(name) {
let item = name.firstChild.textContent;
if (item.toLowerCase().indexOf(text) != -1) {
name.style.display = 'block';
} else {
name.style.display = 'none';
}
}
);
}