この質問Sorting Autocomplete UI Results based on match location を参照すると、単一の値の jQuery オートコンプリートを提供するソリューションがありますが、複数の値の jQuery オートコンプリートに対して同様のソリューションを取得することは可能です ( http://jqueryui.com/autocomplete/ #複数)?
質問する
2984 次
2 に答える
2
ここでの唯一の違いは、extractLast
リンク先のデモが行っているように確認して呼び出す必要があることです。source
複数の値で動作する完全なコードを次に示します (オプションに特に注意してください)。
$("#tags")
.on("keydown", function (event) {
if (event.keyCode === $.ui.keyCode.TAB && $(this).data("autocomplete").menu.active) {
event.preventDefault();
}
})
.autocomplete({
minLength: 0,
source: function (request, response) {
var term = $.ui.autocomplete.escapeRegex(extractLast(request.term))
// Create two regular expressions, one to find suggestions starting with the user's input:
, startsWithMatcher = new RegExp("^" + term, "i")
, startsWith = $.grep(source, function(value) {
return startsWithMatcher.test(value.label || value.value || value);
})
// ... And another to find suggestions that just contain the user's input:
, containsMatcher = new RegExp(term, "i")
, contains = $.grep(source, function (value) {
return $.inArray(value, startsWith) < 0 &&
containsMatcher.test(value.label || value.value || value);
});
// Supply the widget with an array containing the suggestions that start with the user's input,
// followed by those that just contain the user's input.
response(startsWith.concat(contains));
},
focus: function () {
return false;
},
select: function (event, ui) {
var terms = split(this.value);
terms.pop();
terms.push(ui.item.value);
terms.push("");
this.value = terms.join(", ");
return false;
}
});
于 2013-02-09T19:40:18.070 に答える
0
応答では、クエリで必要なものと一致する結果のリストを返す必要があります。
例えば
list_of_terms = {"term0","term1","term2",...};
$("#inputsearch").autocomplete({
var term = request.term
var list = new Array();
source: function( request, response ) {
var cnt = 0;
$.each(list_of_terms, function(i) {
var rSearchTerm = new RegExp('^' + RegExp.quote(term),'i');
if (list_of_terms[i].match(rSearchTerm)) {
list[cnt] = list_of_terms[i];
cnt++;
}
});
response(list);
}
});
RegExp.quote = function(str) {
return (str+'').replace(/([.?*+^$[\]\\(){}|-])/g, "\\$1");
};
括弧を忘れていなければ、入力された用語が list_of_terms 配列の用語の開始と等しい場合、ドロップダウンに複数の値が表示されるはずです
于 2013-02-09T04:09:38.193 に答える