js 关键字搜索功能

html

 
  • 刘德华
  • 黄日华
  • 张学友
  • 谢霆锋
  • 陈奕迅
  • 陈冠希
  • 郑伊健
  • 郭富城
  • 黄秋生
  • 杜琪峰
  • 梁朝伟

js

$("#searchBox").keyup(function () {
            var value = $(this).val();
            $("#dataSet li").each(function () {
                $(this).hide();
                if ($(this).text().indexOf($.trim(value)) >= 0) {
                    $(this).show();
                }
          });
   });

你可能感兴趣的:(js 关键字搜索功能)