1
我有下面的代碼,並很好奇,如何強制輸入相匹配的自動完成的內容:jQuery UI自動完成如何在現有設置中實現必須匹配?
$("#foo").autocomplete({
source: function(request, response) {
$.ajax({
url: "index.pl",
dataType: "json",
data: {
type: 'foo',
term: request.term
},
success: function(data) {
response($.map(data.items, function(item) {
return {
value: item.id
}
}));
}
});
},
minLength: 1
});