我想在我编写的自动完成功能中编写一个选择功能。基本上,我想在绑定列表中的选定项目时重定向到另一个页面。
$(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” +在这里,我要合并选定的列表项。