これはjQueryUI's autocomplete widgetで可能です。具体的には、お客様の要件を満たすようにthis demoを適応させることができます。ここでは例です:
function split(val) {
return val.split(/@\s*/);
}
function extractLast(term) {
return split(term).pop();
}
var availableTags = [ ... ]; // Your local data source.
$("#tags")
// don't navigate away from the field on tab when selecting an item
.bind("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 = request.term,
results = [];
if (term.indexOf("@") >= 0) {
term = extractLast(request.term);
if (term.length > 0) {
results = $.ui.autocomplete.filter(
availableTags, term);
}
}
response(results);
},
focus: function() {
// prevent value inserted on focus
return false;
},
select: function(event, ui) {
var terms = split(this.value);
// remove the current input
terms.pop();
// add the selected item
terms.push(ui.item.value);
// add placeholder to get the comma-and-space at the end
terms.push("");
this.value = terms.join("");
return false;
}
});
そして、ここでそれが働いている:http://jsfiddle.net/UdUrk/
あなたは(たとえば、リモートデータソースで動作するようにする方法など)任意のより多くの情報が必要なら、私に教えてください。
更新:リモートデータソース(StackOverflowのAPI)を使用した例を次に示します。http://jsfiddle.net/LHNky/。また、自動補完候補のカスタム表示も含まれています。
ごめんなさい!完了しました。 –
問題はありませんが、それはいつも起こります。お役に立てて嬉しいです! –