我有一个表格,每一行都包含一个单元格,里面是复选框和该复选框的标签。
我正在尝试根据输入的文本隐藏行。
基本上这是名称列表,我想过滤/隐藏那些不包含输入文本的名称。
这是我的功能:
$(function () {
$('#user_name').keyup(function () {
if ($.trim($('input#user_name').val()) == '') {
$('table.myList >tbody >tr').each(function (index, value) {
$(this).css("display", "block");
});
} else {
$('table.myList >tbody >tr').each(function (index, value) {
if ($(this).find('td > label').length > 0) {
if ($(this).find('td > label').html().toLowerCase().indexOf($.trim($('input#user_name').val()).toLowerCase()) >= 0) {
$(this).css("display", "block");
} else {
$(this).css("display", "none");
}
}
});
}
});
});
此代码有效,如果我的表有 40 条记录,它的速度很快,但是当我将列表增加到 500 时,它会变慢并在一段时间后使我的浏览器崩溃。
我正在寻找一种方法来改进此代码以更快地工作。
这是模型代码的链接:http: //jsfiddle.net/gGxcS/
==更新==
这是我基于@scessor 和@nnnnnn 的答案的最终解决方案:
$(function () {
var $tableRows = $('table.myList tr');
var lastInput = '';
$('#user_name').keyup(function () {
var sValue = $.trim($('input#user_name').val());
if(lastInput==sValue) return;
if (sValue == '') {
$tableRows.show();
} else {
$tableRows.each(function () {
var oLabel = $(this).find('label');
if (oLabel.length > 0) {
if (oLabel.text().toLowerCase().indexOf(sValue.toLowerCase()) >= 0) {
$(this).show();
} else {
$(this).hide();
}
}
});
lastInput=sValue;
}
});
$('img.removeSelections').click(function () {
$('table.myList input[type="checkbox"]').prop("checked", false);
})
});