使用多个单词的实时搜索筛选器,请使用AND而不是OR



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

目前,使用下面的代码,如果有人搜索"技术人员亚特兰大",他们将获得包含"技术人员"的董事会配置文件分区和包含"亚特兰大"的分区。我想让它找到一个包含这两个单词的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;
})

相关内容

  • 没有找到相关文章

最新更新