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 示例