入力をオートコンプリートするための次の関数があります。
$("#auto").autocomplete({
source:"/autocomplete.php",
minLength: 5,
_renderItem: function( ul, item) {
return $( "<li></li>" )
.data( "item.autocomplete", item )
.append( $( "<a></a>" ).text( item.label ) )
.appendTo( ul );
}
});
JSON 配列には 3 つのパラメーター ( value 、 label 、 extra ) が含まれています。オートコンプリート リストの要素が選択された直後に、3 番目のパラメーターを取得して別の入力テキストに追加するにはどうすればよいですか?