From: カスタム jquery オートコンプリート実装で結果番号を表示する andrew whittakers の例
_response: function(contents){
$.ui.autocomplete.prototype._response.apply(this, arguments);
$(this.element).trigger("autocompletesearchcomplete", [contents]);
}
なぜ[contents]
ではないのcontents
ですか?