jquery - 如果未找到匹配,则隐藏过滤选项(元素)

时间:2012-05-22 03:30:54

标签: javascript jquery filter

我有以下代码(也在JSFIDDLE上运行:http://jsfiddle.net/DSuua/12/

根据价格匹配对产品进行分类。如果在该价格范围内没有产品,我想在页面加载时完全隐藏左侧面板列表中的过滤器选项(与显示价格范围无关,就像我现在所做的那样)。

因此,举例来说,如果10 - 20的价格范围内没有产品,那么在左侧面板上隐藏“10美元 - 20美元”,因为它无关紧要,只是显示一个恼人的“找不到匹配”的消息给用户。

现在,对click事件执行过滤。在完成过滤之前,需要首先检查列表属性值(名称,标题),再次检查产品价格值(最低和最高价格),如果找不到匹配的范围,则从列表中隐藏这些过滤项目。 / p>

我仅限于客户端的此解决方案。

此外,欢迎任何改进此代码的整体提示。

HTML:

<ul id="filterByPrice">    
    <li><span class="section-header">PRICE</span></li>    
    <li><a href="#" title="">Any Price</a></li>
    <li><a href="#" name="0" title="9">Under $10</a></li>
    <li><a href="#" name="10" title="19">$10 - $20</a></li>
    <li><a href="#" name="20" title="29">$20 - $30</a></li>
    <li><a href="#" name="30" title="39">$30 - $40</a></li>
    <li><a href="#" name="40" title="49">$40 - $50</a></li>
    <li><a href="#" name="50" title="9999">Over $50</a></li>
</ul>

<ul id="products">
    <li>
        <a href="/product-one">Product One</a><br>
        <span id="lowestPriceRange">0</span>
        <span id="highestPriceRange">9</span>
    </li>
    <li>
        <a href="/product-two">Product Two</a><br>
        <span id="lowestPriceRange">20</span>
        <span id="highestPriceRange">29</span>
    </li>
    <li>
        <a href="/product-three">Product Three</a><br>
        <span id="lowestPriceRange">30</span>
        <span id="highestPriceRange">39</span>
    </li>
    <div id="nothingFound" style="display:none;">
        Nothing found
    </div>
</ul>

CSS:

#filterByPrice, #products {
 border:1px solid #ccc;
 padding:10px;  
 width:100px; 
 margin:10px; 
 float:left;
 position:relative;   
}

JS:

var noProductMatches = $('#nothingFound');

$('#filterByPrice li a').click(function() 
{
    noProductMatches.hide();

    var priceRangeSelectedItem = $(this).html().toLowerCase();
    var minSelectedPrice = parseInt( $(this).attr("name") );
    var maxSelectedPrice = parseInt( $(this).attr("title") );
    var productContainer = $('#products li');

    if (priceRangeSelectedItem == 'any price')
    {
        productContainer.fadeOut("slow");
        productContainer.delay(100).fadeIn("slow");
    }
    else
    {
        var results = productContainer
            .fadeOut(100)
            .delay(100)
            .filter(function() 
            {
                var minProductPrice = parseInt( $(this).find("#lowestPriceRange").html().toLowerCase() );
                var maxProductPrice = parseInt( $(this).find("#highestPriceRange").html().toLowerCase() );

                return (minProductPrice >= minSelectedPrice &&  maxProductPrice <= maxSelectedPrice);
            })
            .each(function(index, item) 
            {
                $(item).fadeIn("slow");
            });

            if (results.length == 0)
            {
                noProductMatches.fadeIn();
            }
    }
});
​

1 个答案:

答案 0 :(得分:3)

首先,您应该在页面上只有一个给定ID的HTML元素,因此highestPriceRangelowestPriceRange应该是类。其次,这听起来像服务器端更容易做的事情,但如果你必须做客户端这应该做的伎俩:

var hidePrices = {};
hidePrices[0] = true;
hidePrices[10] = true;
hidePrices[20] = true;
hidePrices[30] = true;
hidePrices[40] = true;
hidePrices[50] = true;

$('#products').find('span').each(function(i, el){
    // round price down to nearest 10s
    var key = parseInt(Math.floor($(this).html() / 10) * 10, 10);
    hidePrices[key] = false;
});

$('#filterByPrice').find('li').each(function(i, el){
    if (hidePrices[Number($(this).find('a').attr('name'))]) {
        $(this).hide();
    }
});

See demo