リモートソース(別のphpスクリプト)からのデータを使用して、JQueryUIオートコンプリートを使用しようとしています。以下は、JQueryUI Web サイトのデモに示されている例です。
<style>
.ui-autocomplete-loading { background: white url('images/ui-anim_basic_16x16.gif') right center no-repeat; }
</style>
<script>
$(function() {
function log( message ) {
$( "<div/>" ).text( message ).prependTo( "#log" );
$( "#log" ).scrollTop( 0 );
}
$( "#birds" ).autocomplete({
source: "search.php",
minLength: 2,
select: function( event, ui ) {
log( ui.item ?
"Selected: " + ui.item.value + " aka " + ui.item.id :
"Nothing selected, input was " + this.value );
}
});
});
</script>
私の質問は、PHP スクリプト「search.php」についてです。このスクリプトは単に配列を返す必要がありますか?