Live Search对字母无效

时间:2014-08-11 02:14:32

标签: jquery

我有这个JQuery脚本,可以在搜索框中查找用户输入的每个字母(或客户列表中的客户名称)。

<script>
$(document).ready(function() {
    $("#search-value").on("keyup", function() {
        var value = $(this).val();
        $("table tr").each(function(index) {
            if (index!==0) {
                $x = $(this);
                var id = $x.find("td:first").text();
                if (id.indexOf(value)!==0) {
                    $x.hide();
                }
                else {
                    $x.show();
                }
            }
        });
    });
});
</script>

但事实是,它只适用于数字,通常是ID,如果用户搜索客户端&#39; ID号码。我想要的是使其工作,不仅仅是ID,而是用户输入的字母或首选名称。顺便说一句,这只是In-Page Result Search的后续问题 这也类似于本网站的Q&amp; A之一给出的JQuery脚本。它似乎通过字母或数字正常工作。所以我想知道当我在索引页面上安装它时会出现什么问题?

0 个答案:

没有答案