javascript-如果在JQUERY中keyup为空,如何显示div

前端之家收集整理的这篇文章主要介绍了javascript-如果在JQUERY中keyup为空,如何显示div 前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

我有一个代码,显示搜索框中输入的div内容.

$(document).ready(function(){
  $("#myInput").on("keyup",function() { //#myinput is the search Box
    var value = $(this).val().toLowerCase();

//#myList is the content that displays the searched data.
    $("#myList .card").filter(function() { 
      $(this).toggle($(this).text().toLowerCase().indexOf(value) > -1)
    });
  });
});

现在我要显示这个div

<div class="alert alert-warning text-center" id="emptyList" style="display:none;">
        <strong>No data found!</strong> You can add product by clicking the button "Add item" below or <a href="addItem.PHP">click here</a>
</div>

如果过滤器为空.

我是jquery新手,所以你们可以在这方面帮助我.

最佳答案
您可以使用:visible伪选择器添加对可见卡片的检查,例如:

$(document).ready(function() {
  $("#myInput").on("keyup",function() { //#myinput is the search Box
    var value = $(this).val().toLowerCase();

    //#myList is the content that display the searched data.
    $("#myList .card").filter(function() {
      $(this).toggle($(this).text().toLowerCase().indexOf(value) > -1)
    });

    if (!$("#myList .card:visible").length) {
      $('#emptyList').show();
    } else {
      $('#emptyList').hide();
    }
  });
});

shorhand版本可以这样写:

$('#emptyList').toggle(!$("#myList .card:visible").length);
原文链接:https://www.f2er.com/html/530465.html

猜你在找的HTML相关文章