我没有得到自动完成后的回应。
有我的jQuery代码
jQuery( ".newtag_new" ).autocomplete({
minLength: 0,
source: function( request, response ) {
jQuery.ajax({
type: 'GET',
url: clipper_params.ajax_url,
dataType: "json",
data: {
action : "ajax-tag-search-front-new",
term : request.term
}
});
},
focus: function( event, ui ) {
jQuery( ".newtag_new" ).val( ui.item.label );
return false;
},
select: function( event, ui ) {
window.location.replace("http://domain.com");
return false;
}
})
.autocomplete( "instance" )._renderItem = function( ul, item ) {
return jQuery( "<li>" )
.append( "<div>" + item.label + "<br>" + item.desc + "</div>" )
.appendTo( ul );
};
我从AJAX那里得到了这个回复,但它没有显示在自动完成的hinds上
[{"value":"jquery","label":"jQuery","desc":"the write less, do more, JavaScript library","icon":"jquery_32x32.png"}]
答案 0 :(得分:2)
使用以下代码替换您的代码
source: function (request, response) {
$.getJSON(clipper_params.ajax_url, {
action : "ajax-tag-search-front-new",
term : request.term
},response);
}