我有以下json
[{"ActionScript":"orange"},{"AppleScript":"orange"},{"Asp":"red"}]
我希望jquery自动完成能够使用来自ajax请求的响应。
该语言的名称是搜索词,但该值是我想要附加到其他地方的html元素的标记的颜色。
这是我试图弄清楚
$("#tags").autocomplete({
source: function(request, response){
$.get("/tickets/tags.json", {data:request.term}, function(data){
$(data).each(function(index, value){
console.log(index); // this a number
console.log(data[index]); // this returns an object like Scala:"green"
});
},"json");
}
});