具有多个值的 JQuery 自动完成选择组件
最近我询问有关 JQuery 自动完成选择/组合框组件的问题。但是,我还没有找到用户可以选择多个值的示例。我现在的问题是这可能吗?如果没有,还有什么可以满足我的需求吗?
Recently I asked about JQuery autocomplete select/combobox component. However, I haven't been able to find an example where user could select multiple values. My question is now is this even possible? If not, is there anything else what would fit my needs?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是一个老问题,但在搜索结果中仍然排名很高。
jQueryUI 现在在其自动完成功能中具有此功能(该功能在
标记上运行,而不是
,然后通过 javascript 将其修改为自动完成 - 如果 javascript 失败,它可以提供安全的回退。
This is an old question, but still comes up high on search results.
jQueryUI now has this in its autocomplete function (which operates on an
<input>
tag, not a<select>
tag).See https://jqueryui.com/autocomplete/#multiple for a working example.
Personally, I'm looking elsewhere because I prefer to populate a
<select>
and then have it modified by javascript to an autocomplete - it makes for a safe fallback if the javascript fails.