在jQuery过滤器什么都不返回时显示消息

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了在jQuery过滤器什么都不返回时显示消息相关的知识,希望对你有一定的参考价值。

我在网上找到了按文字内容过滤元素的代码。 如何在没有匹配时显示消息?

$("button").click(function() {
  var value = $(this).data('value').toUpperCase();
  $("div").filter(function(index) {
    $(this).toggle($(this).text().indexOf(value) > -1)
  });
});
<button>example</button>
答案

您正在使用filter()根据状态切换每个项目,例如使用each()。但是filter()的一个优点是你可以返回减少的选择并计算它包含的项目。该值可以确定是否应显示“不匹配”消息。

... .filter()方法从匹配元素的子集构造一个新的jQuery对象。提供的选择器针对每个元素进行测试;匹配选择器的所有元素都将包含在结果中。 - filter()

对于每个元素,如果函数返回true(或“truthy”值),则该元素将包含在过滤集中;否则,它将被排除在外。 - Using a Filter Function

因此,不要直接从过滤器调用中切换项目,而应考虑返回当前项目是否匹配的布尔值度量。将生成的筛选选择保存在变量中。过滤后,您可以将整个选项切换为:

var $filtered = $items.filter(function() {
  return $(this).text().indexOf(value) > -1;
});

$items.toggle(false);
$filtered.toggle(true);

这会隐藏所有项目,然后仅显示已过滤的项目。 你甚至可以考虑一些褪色动画:

$items.hide(250);
$filtered.stop(true,false).show(250);

然后你可以参考过滤后的选择的length。 如果为零,则显示“未找到”消息:

var hasMatches = $filtered.length;

if (hasMatches) {
  // there were matches.
} else {
  // no matches.
}

你也可以将qazxsw poi传递给过滤器。 jQuery qazxsw poi选择“包含指定文本的所有元素”,这是一个不错的选择。

工作实例:

selector
:contains() selector
var $items = $('.item');
var $none = $('#none');
var fade = 250;

function filterContent() {

  // get word from value of clicked button.
  var word = this.value;

  // hide items; filter; show filtered; count matches
  var hasMatches = $items
    .hide(fade)
    .filter(':contains(' + word + ')')
    .stop(true, false)
    .show(fade)
    .length;

  // if no matches, show message.
  if (hasMatches) {
    $none.hide(fade);
  } else {
    $none.show(fade);
  }

}

$('button').on('click', filterContent);
另一答案

您可以创建一个变量来计算匹配项。

#none {
  display: none;
  color: darkred;
}

#buttons {
  margin: 1em 0 0;
}

<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>

<div class="item">Here is some text.</div>
<div class="item">Here is some other text.</div>
<div class="item">Here is some other different text.</div>
<div class="item">Here is something else.</div>
<div class="item">Here is some additional text.</div>

<div id="none">No matches found.</div>

<nav id="buttons">
  <button type="button" data-value="">all</button>
  <button type="button" data-value="text">text</button>
  <button type="button" data-value="other">other</button>
  <button type="button" data-value="additional">additional</button>
  <button type="button" data-value="bazooka">bazooka</button>
</nav>
$("button").click(function(){
var value = $(this).data('value').toUpperCase();
var count = 0;
$("div").filter(function(index) {

  if($(this).text().indexOf(value) > -1) count++;

  $(this).toggle($(this).text().indexOf(value) > -1)

  });
  if(count == 0) alert('Not match');
});
另一答案

$("button").click(function(){ var value = $(this).data('value').toUpperCase(); var count = 0; $("div").filter(function(index) { if($(this).text().indexOf(value) > -1) count++; $(this).toggle($(this).text().indexOf(value) > -1) }); if(count == 0) alert('Not match'); });返回值。检查长度是否为1或更长。

<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<div>TEST1</div>
<div>example</div>
<div>test1</div>


<button data-value='test1'>example</button>
filter()
$(".filter").click(function() {
  var value = $(this).text(); //Get the text of the button
  var result = $("div").hide().filter(function(i, o) { //Hide All and filter
    return $(o).text().includes(value); //Return true if the content of div contains text of the button
  }).show(); //Show all result


  if (result.length) { //Check the length of the result
    //Found match/es
    $(".msg").text('');
  } else {
    //No match
    $(".msg").text(`${value} not found`);
  }
});

$(".show-all").click(function() {
  $("div").show();
});

以上是关于在jQuery过滤器什么都不返回时显示消息的主要内容,如果未能解决你的问题,请参考以下文章

Jquery 搜索过滤器 - 未找到结果时显示默认消息

ng-repeat过滤器,在过滤器删除了对象时显示消息

仅在应用过滤器时显示 bootstrap-vue b-table 中的项目

如何在从 jquery ajax 调用成功返回时显示 JQuery 对话框

添加新片段时显示的按钮

如何通过 Javascript / jQuery 在按钮单击时显示引导警报?