同位素组合过滤器功能

时间:2017-07-07 10:10:27

标签: javascript jquery wordpress jquery-isotope isotope

我有这个JQuery函数,我将所有过滤器组合在一起

  var container = $('.isotope-XXX').isotope({
    itemSelector: '.list-XXX',
    layout: 'fitRows',
    filter: function() {
    ....
        return result;
    }

现在,下面还有另一个功能

selects.change( function() {
     ...
     container.isotope({ filter: filterValue });
}

我试图将选择的值移到上面的函数,反之亦然。但没用。

像这样:

    // Combine filters or set the value to * if buttonFilters
    inputFilter = concatValues( filterValue ) || '*';

    // Log out current filter to check that it's working when clicked
    console.log( inputFilter );

    // Trigger isotope again to refresh layout
    container.isotope();

但这仅适用于html页面,而不适用于wordpress页面。

我不确定如何将两者结合起来.. !!帮助任何人..

0 个答案:

没有答案