自动完成功能中的选择功能

时间:2018-07-30 09:39:06

标签: jquery autocomplete jquery-ui-autocomplete

我想在我编写的自动完成功能中编写一个选择功能。基本上,我想在绑定列表中的选定项目时重定向到另一个页面。

 $(el).autocomplete({
        source: $.map(FINALLST, function (item) {
            return { label: item.Text, value: item.value };
        })
    });
    $(el).focusin(function () {
        if (el.value == "") {
            $(el).autocomplete({
                minLength: 0,
                source: function (request, response) {
                    var data = $.grep(filterevaluate, function (label) {
                        return value.substring(0, request.term.length).toLowerCase() == request.term.toLowerCase();
                    });
                    response(data);
                }
            }).focus(function () {
                $(this).autocomplete("search", "");
            })
        }
    });
});

我想重定向到:location.href =“ / Doctor / DoctorsDetails” +在这里,我要合并选定的列表项。

0 个答案:

没有答案