具有多个单词的实时搜索过滤器,使用 AND 而不是 OR

Live Search Filter with Multiple Words, Use AND instead of OR

我有一个实时搜索自动完成过滤器,用于清除人员目录。使用此搜索,我希望人们能够使用多个词进行搜索,这将进一步减少他们获得的结果数量。

目前,使用下面的代码,如果有人搜索 "technician Atlanta",他们将获得包含 "technician" 和 "Atlanta" 的目录配置文件 div。我想要的是找到一个包含这两个词的 div... 这样他们就可以找到在亚特兰大的技术人员。希望这是有道理的。

我的代码可以单独包含这些术语,但我希望它们找到包含多个术语的行。有任何想法吗?提前致谢!!

$("#filter").keyup(function () {
 // Split the current value of the filter textbox
 var data = this.value.split(" ");
 // Get the table rows
 var rows = $(".directoryprofile");
 if (this.value == "") {
   rows.show();
   return;
 }
       
 // Hide all the rows initially
 rows.hide();

 // Filter the rows; check each term in data
 rows.filter(function (i, v) {
    for (var d = 0; d < data.length; ++d) {
        if ($(this).is(":contains('" + data[d] + "')")) {
            return true;
        }
    }
    return false;
 })
 // Show the rows that match.
 .show();
});

rows.filter(function(i, v) {
  var truth = true;

  for (var d = 0; d < data.length; ++d) {
    //remain true so long as all of the filters are found
    //if even one is not found, it will stay false
    truth = truth && $(this).is(":contains('" + data[d] + "')");
  }

  return truth;
})

//OR you could just flip your logic and return false if any of the
//filters are not found

rows.filter(function(i, v) {
  for (var d = 0; d < data.length; ++d) {
    if (!$(this).is(":contains('" + data[d] + "')")) {
      return false;
    }
  }
  
  return true;
})