0

我有一个在 IE 中运行良好的功能,在调试模式下,在 Chrome 和 Firefox 中运行良好。当代码不处于调试模式时,该功能在 Chrome 和 Firefox 中不起作用。

$('#search').keyup(function() 
{
    delay(function () {
        var searchText = $('#search').val().toLowerCase().trim();
        $allListElements = $('#qlTable tr'),
        $matchingListElements = $allListElements.filter(function (i, el) {
            filterIndex = $(el).attr('title').toLowerCase().indexOf(searchText) !== -1;
            return filterIndex;
        });
        $allListElements.hide();
        $matchingListElements.show();
    }, 750);
});

任何帮助,将不胜感激。

4

1 回答 1

0

这是通过使用 .on("keyup") 函数而不是 .keyup() 来解决的。

于 2013-06-28T21:02:41.520 回答