具有多个单词的实时搜索过滤器,使用AND代替OR

时间:2018-10-26 18:56:36

标签: javascript jquery wordpress autocomplete livesearch

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

当前,使用下面的代码,如果有人搜索“ technical Atlanta”,他们将获得包含“ technical”的目录配置文件div和包含“ 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();
});

1 个答案:

答案 0 :(得分:1)

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;
})