使用Jquery搜索元素的数据属性,部分匹配

时间:2017-04-12 18:27:31

标签: javascript jquery function filter custom-data-attribute

我使用输入字段和on(" keyup")事件构建项目过滤器。它看起来像这样:

$("#inputFilter").on("keyup", filterPrograms);

在课堂上找到项目很有效,例如:

<h6 class="programName">Science</h6>

但是,在其中一些H6中,我添加了一个数据属性,如下所示:

<h6 class="programName" data-tag="indigenous interdisciplinary ">Aboriginal Studies</h6>

如何修改以下代码以过滤类的文本(当前正在工作)以及数据标记的内容?这只是隐藏了父块&#39; .mix&#39;只要部分匹配不是真的。这是我的职责:

   function filterPrograms(event) {
        // Retrieve the input field text
        var filter = $('#inputFilter').val();
        // Loop through the blocks
        $(".programName").each(function(){
            // this part isn't working!!
            dataResult = $(this).is('[data-tag*='+filter+']') < 0;
            // If the item does not contain the text phrase, hide it
            textResult = $(this).text().search(new RegExp(filter, "i")) < 0;
            if (textResult || dataResult) {
                $(this).closest(".mix").hide();           
            } else {
                $(this).closest(".mix").show();
            }
        });
    }

现在,我非常确定它是因为.is()永远不会完全匹配,这就是我需要部分匹配的原因。在上面的例子中,输入&#34; indi&#34;应该对data-tag属性的内容提供肯定的结果;这不起作用。打字&#34; abo&#34;匹配textResult,并且工作正常。

我知道我错过了一些东西,但阅读文档(以及SO)对此没有帮助。提前谢谢。

编辑:这是@ Triptych解决方案的工作功能:

$(".programName").each(function(){
    // If the item does not contain the text phrase hide it
    dataResult = $(this).is('[data-tag*="'+filter+'"]');
    textResult = $(this).text().search(new RegExp(filter, "i")) < 0;
    if (textResult && !dataResult) {
        $(this).closest(".mix").hide(); // Hide the item if there are no matches
    } else {
        $(this).closest(".mix").show(); // Show the item if there are matches
    }
});

1 个答案:

答案 0 :(得分:1)

一方面,您无法将.is()0的结果进行比较。 is()返回一个布尔值。

所以改变这一点。

    dataResult = $(this).is('[data-tag*='+filter+']') < 0;

对此。

    dataResult = $(this).is('[data-tag*="'+filter+'"]');

请注意,我还引用了属性匹配的字符串,这将允许查询包含空格。