jqueryuiオートコンプリートを使用しています。オートコンプリートをさまざまなセレクターにバインドしたいのですが、オートコンプリート関数の成功、ソースなどをセレクターごとにカスタマイズする必要があります。
//Define execute function for birds
//Define execute function for turtles
$( "#birds,#turtles" ).autocomplete({
source: "search.php",
minLength: 2,
select: function( event, ui ) {
this.execute();
/*based on selector id execute() will call the
right function attached with the selector
if called by birds
call execute function of birds
if called by turtles
call execute function of turtles*/
}
});
では、さまざまなオブジェクトにカスタマイズ関数をアタッチして、jqueryにセレクターに基づいて適切なソースとカスタマイズされた関数を選択させるにはどうすればよいですか?