如何使用没有找到结果显示的jquery搜索过滤器?

时间:2019-02-20 01:54:51

标签: jquery search filter

我正在寻找使用jQuery搜索过滤器的方法。 实际上,没有找到结果。

这是我的代码:

$(document).ready(function() {
    $('#search_announcements').keyup(function() {

        var text = $(this).val();
        $('.col-lg-6').hide();
        $('.col-lg-6 .card-title:contains("' + text + '")').closest('.col-lg-6').show();
        $('.col-lg-6 .card-text:contains("' + text + '")').closest('.col-lg-6').show();
    });
});

$.expr[":"].contains = $.expr.createPseudo(function(arg) {
    return function(elem) {
        return `$`(elem).text().toUpperCase().indexOf(arg.toUpperCase()) >= 0;
    };
});

怎么了?

0 个答案:

没有答案