jQuery过滤器优化(移动设备上的性能降低)

时间:2016-01-22 14:50:29

标签: jquery performance search mobile livesearch

我有一个大约200个项目的列表(在表格行中):

<tr><td><h5>Title</h5></td>
    <td class="nazwa">some text</td>
    <td>Some additional stuff</td>
</tr>

我创建了一个jQuery函数,用于过滤(显示或隐藏)项目(如果它们匹配搜索的字符串

jQuery.fn.filterItems = function(str){
    var title = jQuery(this).find("h5").text().toLowerCase();
    var name = jQuery(this).find(".nazwa").text().toLowerCase();
    if( title.search( str ) < 0 && name.search( str ) < 0 ){
        jQuery(this).hide().removeClass("visible");
    }
    else{
        jQuery(this).show().addClass("visible");
    }
    return this;
}

每次用户在搜索输入中输入内容时,它会自动过滤项目并显示与输入匹配的内容:

jQuery("#search_items").on("input", function(){
        var s = jQuery(this).val();
        if(s != ""){
           jQuery('.list-of-items tr').each(function(){
               jQuery(this).filterItems( s.toLowerCase() );
           });
        }
        else{
            jQuery('.list-of-items tr').show().addClass("visible");
        }
    });

这在PC上运行良好,但我在移动设备上遇到了一些性能问题。有时在输入和过滤反应之间存在相当大的延迟。

如何根据资源的性能/使用情况优化此实时搜索?

1 个答案:

答案 0 :(得分:0)

这可能有点帮助:https://davidwalsh.name/javascript-debounce-function

// Returns a function, that, as long as it continues to be invoked, will not
// be triggered. The function will be called after it stops being called for
// N milliseconds. If `immediate` is passed, trigger the function on the
// leading edge, instead of the trailing.
function debounce(func, wait, immediate) {
    var timeout;
    return function() {
        var context = this, args = arguments;
        var later = function() {
            timeout = null;
            if (!immediate) func.apply(context, args);
        };
        var callNow = immediate && !timeout;
        clearTimeout(timeout);
        timeout = setTimeout(later, wait);
        if (callNow) func.apply(context, args);
    };
};

您必须使用上面的input包装事件函数(在您的情况下为debounce())。

请阅读有关debounce and throttle

的更多信息

如果你有一个使用角度的项目,它会更容易,更快:https://docs.angularjs.org/api/ng/filter/filter