我想在选择选项标签中显示我的自动完成结果,而不是默认的 ul li 添加了一些 jquery 类(我真的不想要)。
我在堆栈溢出中使用来自相关帖子的代码:http: //jsfiddle.net/naveen/yRwH7/作为示例。
它实际上第一次正确加载,但在那之后,什么也没有。有什么建议么?还有其他方法吗?代码在这里http://jsfiddle.net/yRwH7/1/
Javascript
$("input#selectedInput").bind("autocompleteselect", function (event, ui) {
alert("Sel item " + JSON.stringify(ui.item.json));
}).autocomplete({
appendTo: "#list",
source: function (request, response) {
$.ajax({
url: "http://itunes.apple.com/search?term=jack+johnson&entity=musicTrack",
dataType: "jsonp",
data: {
featureClass: "P",
style: "full",
maxRows: 12,
name_startsWith: request.term
},
success: function (data) {
response($.map(data.results, function (item) {
itunesJson = item;
return {
label: "<option>" + item.trackName + "</option>",
}
}));
var elm = $("#list");
elm.html(elm.text());
},
});
}
})
HTML
<input type="text" id="selectedInput"/>
<select id="list"></select>