js autocomplete ajax PHP响应

时间:2016-10-20 21:01:56

标签: javascript jquery ajax autocomplete

我没有得到自动完成后的回应。

有我的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"}]

1 个答案:

答案 0 :(得分:2)

使用以下代码替换您的代码

source: function (request, response) {
    $.getJSON(clipper_params.ajax_url, {
        action : "ajax-tag-search-front-new",
        term : request.term
    },response);
}