1
私は、次のコードを持っているとオートコンプリートの内容と一致するように入力を強制する方法として興味津々:jQuery UI既存の設定でMust Matchを実装する方法を自動補完しますか?
$("#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
});