2

嘿,我正在尝试创建一个搜索字段,该字段将根据用户输入的内容并单击搜索按钮来过滤或显示/隐藏(最好的)列表元素。我不知道该怎么做。不幸的是,我尝试的一切都不起作用,我不确定最好的方法,比如我使用显示和隐藏还是有更好的方法?

这是我的 HTML:

<html>
    <head>

    </head>
    <body>
    <label for="filter">Filter</label>  
    <input type="text" name="filter" value="" id="filter" />

        <a id="addtag" href="#">Search</a> 

    <ul>
        <li id="Hero1">Superman</li>
        <li id="Hero2">Batman</li>
        <li id="Hero3">Spiderman</li>
        <li id="Hero4">Iron Man</li>
        <li id="Hero5">The Hulk</li>
    </ul>

    </body>
</html>

因此,如果有人输入“超人”并单击搜索按钮,则只会显示超人列表元素。

对此的任何帮助都会很棒。谢谢。

4

4 回答 4

4

这也使用了 jQuery 并创建了一个滑动动画。这将是 HTML:

<div id="wrap">
  <h1 id="header">List of countries</h1>
  <ul id="list">
    <li><a href="#">List Item</a></li>
            <li><a href="#">Add Unlimited Items</a></li>
</ul>
</div>

JavaScript

(function ($) {
  // custom css expression for a case-insensitive contains()
  jQuery.expr[':'].Contains = function(a,i,m){
      return (a.textContent || a.innerText || "").toUpperCase().indexOf(m[3].toUpperCase())>=0;
  };


  function listFilter(header, list) { // header is any element, list is an unordered list
    // create and add the filter form to the header
    var form = $("<form>").attr({"class":"filterform","action":"#"}),
        input = $("<input>").attr({"class":"filterinput","type":"text"});
    $(form).append(input).appendTo(header);

    $(input)
      .change( function () {
        var filter = $(this).val();
        if(filter) {
          // this finds all links in a list that contain the input,
          // and hide the ones not containing the input while showing the ones that do
          $(list).find("a:not(:Contains(" + filter + "))").parent().slideUp();
          $(list).find("a:Contains(" + filter + ")").parent().slideDown();
        } else {
      $(list).find("li").slideDown();
        }
        return false;
      })
    .keyup( function () {
        // fire the above change event after every letter
        $(this).change();
    });
  }


  //ondomready
  $(function () {
    listFilter($("#header"), $("#list"));
  });
}(jQuery));

CSS 是可选的。JSFiddle 演示:http: //jsfiddle.net/4feug/

于 2013-02-03T00:54:22.860 回答
3

使用 jQuery 搜索插件可能会更好,比如这个。

于 2009-11-19T20:31:41.177 回答
3

非常基本的版本,但不需要插件,它可以工作:

$("#addtag").click(function(){
  $("ul li").hide()
  .filter(":contains('"+ $("#filter").val() +"')").show()
  return false;
})
于 2009-11-19T22:28:13.687 回答
3

对duckyflip的答案进行了一点改进,以使搜索不区分大小写:

$.expr[":"].contains = $.expr.createPseudo(function(arg) {
    return function( elem ) {
        return $(elem).text().toUpperCase().indexOf(arg.toUpperCase()) >= 0;
    };
});

$("#addtag").click(function(){
    $("ul li").hide()
    .filter(":contains('"+ $("#filter").val() +"')").show()
    return false;
});
于 2014-03-28T15:50:07.603 回答