AJAX 自动建议组合框
我正在寻找一个支持 AJAX 的组合框,具有以下功能:
- 该组合框接受从下拉列表中选择的条目以及用户输入的自由格式文本(有点像用于输入标签的文本字段) StackOverflow 问题)
- 下拉列表包含有限数量(少于 10 个)的建议,这些建议基于用户目前输入的内容
- 。这些建议是从主列表和辅助列表中提取的。如果用户的输入无法与主列表中的任何内容匹配,则查阅辅助列表。这两个列表都是由服务器上运行的我的应用程序按需生成的。
有什么建议吗?
I’m looking for an AJAX-enabled combo box with the following features:
- The combo box accepts entries selected from a drop-down as well as free-form text entered by the user (kind of like the text field used to enter tags for StackOverflow questions)
- The drop-down list contains a limited number (less than 10) of suggestions based on what the user typed so far
- The suggestions are pulled from a primary list and a secondary list. The secondary list is consulted if the user’s input cannot be matched to anything in the primary list. Both lists are generated on demand by my application running on the server.
Any suggestions?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
jQuery-ui 有一个 autocomplete 插件提供此功能。
jQuery-ui has an autocomplete plugin that offers this functionality.