如何在json上加载jquery自动完成项

时间:2012-02-24 18:18:09

标签: jquery json jquery-ui jquery-autocomplete

我有以下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");
    }
  });   

0 个答案:

没有答案