使用 JavaScript 可编辑和自动完成组合框
我需要在表单中创建一个可编辑的组合框,并且能够通过组合框的值搜索输入文本(如自动完成方式)。
获得这个的最简单方法是什么?
I need to make a combo box in my form to be editable and capable to search the input text through the values of the combo box (like autocomplete way).
What's the simplest way to obtain this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
如果您尚未使用提供此组件的任何框架(即 YUI),则此组件可能对您有用:dhtmlxCombo
If you aren't already using any framework that provides this component (i.e. YUI), this component might be useful to you: dhtmlxCombo
您可以查看Dojo 的 ComboBox。
它具有您需要的所有功能以及更多功能。
You can take a look at Dojo's ComboBox.
It has all the features you require and more.
我自己也在寻找。我发现的解决方案之一是 jQuery UI 的自动完成。似乎非常灵活并且有据可查。例如,请参阅 http://jqueryui.com/autocomplete/#combobox 。
I am searching for it myself. One of the solutions I've found is jQuery UI's autocomplete. Seems to be very flexible and well documented. See http://jqueryui.com/autocomplete/#combobox for example.