我想实现自定义搜索。 我的代码: $(document).ready(function(){
$('#w-input-search').autocomplete({
minLength: 1,
delay: 500,
source: function (request, response) {
$.getJSON("/demo/account/getUsers", request, function(result) {
response($.map(result, function(item) {
return {
label: "<img src='" + item.photoUrl + "'/>"+item.firstName ,
value: item.firstName,
tag_url: "http://" + window.location.host +"/tags/" + item.tagId + "/" + item.name
}
}));
});
},
});
如何使该列表显示图像而不是文本? &#34;&#34; 我必须说我是一个jquery初学者。