使用javascript和list.js时,如果没有找到结果,如何在搜索中显示“找不到结果”

时间:2016-02-28 09:46:09

标签: javascript html search listjs

如何在用户搜索到列表中没有的内容后显示NO RESULT FOUND。我正在使用 list.js ,我无法弄清楚如何实现它?

是否有一种方法可以在我的代码上的某处添加JavaScript代码,可以监控表格列表为空时显示没有找到结果,因为我使用list.js搜索或更好的替代方案?

我需要一种方法可以告诉我的用户他们正在搜索的内容不存在。

var monkeyList = new List('users', {
  valueNames: ['name', 'born'],
  page: 3,
  plugins: [ ListPagination({}) ] 
});
<div id="users">
  <input class="search" placeholder="Search" />
  <button class="sort" data-sort="name">
    Sort by name
  </button>

  <ul class="list">
    <li>
      <h3 class="name">Jonny Stromberg</h3>
      <p class="born">1986</p>
    </li>
    <li>
      <h3 class="name">Jonas Arnklint</h3>
      <p class="born">1985</p>
    </li>
    <li>
      <h3 class="name">Martina Elm</h3>
      <p class="born">1986</p>
    </li>
    <li>
      <h3 class="name">Gustaf Lindqvist</h3>
      <p class="born">1983</p>
    </li>
  </ul>
<ul class="pagination"></ul>
</div>


<script src="http://listjs.com/no-cdn/list.js"></script> 
<script src="http://listjs.com/no-cdn/list.pagination.js"></script>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.1/jquery.min.js"></script>

2 个答案:

答案 0 :(得分:5)

将此添加到HTML:

<div class="not-found" style="display:none">Not Found</div>

未找到匹配的列表元素时将显示。

附加此事件侦听器以侦听搜索框中的更改:

$('.search').on('keyup', function(event) { // Fired on 'keyup' event

  if($('.list').children().length === 0) { // Checking if list is empty

    $('.not-found').css('display', 'block'); // Display the Not Found message

  } else {

    $('.not-found').css('display', 'none'); // Hide the Not Found message

  }
});

答案 1 :(得分:2)

您还可以像这样使用searchComplete回调(v1.5.0):

monkeyList.on('searchComplete', function (e) {

  if (e.matchingItems.length == 0) {

    // NO RESULTS
    // jquery
    $('.not-found').show();
    // vanilla
    // by classname
    document.getElementsByClassName('className')[0].style.display = "block";
    // or by ID
    document.getElementById("elementID").style.display = "block";

  } else {

    $('.not-found').hide();
    document.getElementsByClassName('className')[0].style.display = "none";
    document.getElementById("elementID").style.display = "none";

  }

});

希望这会有所帮助!