Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
テキストボックスでjQuery UIを使用しています。ユーザーが可能な一致のドロップダウンリストから選択すると、ソース配列から選択のインデックスを取得して、JavaScript 配列を想定します。
これを行う方法はありますか?
次のようなことができます。
select: function(event, ui) { console.log($.inArray(ui.item.value, availableTags)); }
ここで、availableTags はオートコンプリートのソース配列です。
jsFiddle の例