0

可以修改 Matt Ryall 的 jQuery 实时过滤器以仅显示以搜索文本开头的结果吗?

http://mattryall.net/blog/2008/07/jquery-filter-demo 谢谢

4

1 回答 1

0

是的,通过在正则表达式前面添加一个插入符号,它将强制字符串以输入的值开头。

$("#filter").keyup(function () {
    var filter = $(this).val(), count = 0;
    $(".filtered:first li").each(function () {
        if ($(this).text().search(new RegExp("^" + filter, "i")) < 0) { // ADDED CARET HERE
            $(this).addClass("hidden");
        } else {
            $(this).removeClass("hidden");
            count++;
        }
    });
    $("#filter-count").text(count);
});
于 2012-05-04T13:04:37.987 回答