使用jquery列出视图搜索列表过滤器

时间:2017-07-28 03:17:07

标签: javascript jquery html list

搜索结果中有小错误, 这是我的HTML

    <input type="text" class="form-control" id="populerNameKey">

列表项目:

<ul id="destPopuler">
  <li class="country">England</li>
  <li class="testing"><a href="#">Liverpool</a></li>
  <li class="testing"><a href="#">London</a></li>
  <li class="country">Italy</li>
  <li class="testing"><a href="#">Roma</a></li>
  <li class="testing"><a href="#">Milan</a></li>
</ul>

并填写我的javascript jsfiddle

注意:[错误]如果我一个字母地输入“西班牙”,结果就会丢失。我希望它仍然存在,我仍然困惑解决它。有人帮忙吗?谢谢

4 个答案:

答案 0 :(得分:2)

在您的代码中出现问题时,首先输入小写的肝脏,并且您的文本值具有正确的值,大写优先。 你应该输入你的输入值和搜索值文本。

你可以用

做到这一点

.toLowerCase函数

.toUpperCase功能

这里有一些参考链接toLowerCase toUpperCase

$("#populerNameKey").on('keyup', function(){
var value = $(this).val().toLowerCase();
$("#destPopuler li").each(function () {
    if ($(this).text().toLowerCase().search(value) > -1) {
        $(this).show();
        $(this).prev('.country').last().show();
    } else {
        $(this).hide();
    }
});   
})

答案 1 :(得分:2)

&#13;
&#13;
function myFunction() {
    var input, filter, ul, li, a, i;
    input = document.getElementById("myInput");
    filter = input.value.toUpperCase();
    ul = document.getElementById("myUL");
    li = ul.getElementsByTagName("li");
    for (i = 0; i < li.length; i++) {
        a = li[i].getElementsByTagName("a")[0];
        if (a.innerHTML.toUpperCase().indexOf(filter) > -1) {
            li[i].style.display = "";
        } else {
            li[i].style.display = "none";

        }
    }
}
&#13;
* {
  box-sizing: border-box;
}

#myInput {
  background-image: url('/css/searchicon.png');
  background-position: 10px 12px;
  background-repeat: no-repeat;
  width: 100%;
  font-size: 16px;
  padding: 12px 20px 12px 40px;
  border: 1px solid #ddd;
  margin-bottom: 12px;
}

#myUL {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

#myUL li a {
  border: 1px solid #ddd;
  margin-top: -1px; /* Prevent double borders */
  background-color: #f6f6f6;
  padding: 12px;
  text-decoration: none;
  font-size: 18px;
  color: black;
  display: block
}

#myUL li a.header {
  background-color: #e2e2e2;
  cursor: default;
}

#myUL li a:hover:not(.header) {
  background-color: #eee;
}
&#13;
<!DOCTYPE html>
<html>
<head>
<style>
</style>
</head>
<body>

<h2>My Phonebook</h2>

<input type="text" id="myInput" onkeyup="myFunction()" placeholder="Search for names.." title="Type in a name">

<ul id="myUL">
  <li><a href="#" class="header">A</a></li>
  <li><a href="#">Adele</a></li>
  <li><a href="#">Agnes</a></li>

  <li><a href="#" class="header">B</a></li>
  <li><a href="#">Billy</a></li>
  <li><a href="#">Bob</a></li>

  <li><a href="#" class="header">C</a></li>
  <li><a href="#">Calvin</a></li>
  <li><a href="#">Christina</a></li>
  <li><a href="#">Cindy</a></li>
</ul>

<script>
</script>

</body>
</html>
&#13;
&#13;
&#13;

尝试这个。

答案 2 :(得分:0)

对输入和列表项的值

使用.toLowerCase()

您将大写字母与小写字母进行比较。

答案 3 :(得分:0)

看起来您需要不区分大小写的搜索。您可以使用带有ignore case(i)标志的正则表达式(RegExp)。像RegExp(value, "i")一样。这将在进行比较时忽略这种情况。所以,你要改变

$(this).text().search(value) > -1

$(this).text().search(RegExp(value, "i")) > -1