这是填充文件源给出的相同数组的代码;
$("#input-search").autocomplete({
source: function(request, response) {
$.ajax({
url: "SearchList.igx",
data: { name: request.term, maxResults: 10 },
//dataType: "json",
type: "GET",
success: function(data){
response(data);
}
});
},
select: function(event, ui) {
$('#input-search').val(ui.item.value);
},
cache: false,
});
这里是填充的SearchList.igx;
[{label:"John Doe", value:"0123"},{label:"Joshua Poe", value:"0124"}]
这是这样的观点:
如何将其视为填充的建议文本,例如某些自动完成输出视图?