jQuery AutoComplete 具有三个级别的建议?
我正在构建一个基于 django 的应用程序,现在是时候添加 DHTML 内容了。
我的一个字段表示具有以下格式的数据库字段:databaseName.tableName.fieldName
我希望在三个级别上具有 javascript 自动完成功能,也就是说,一旦我键入部分数据库名称,我就会得到所有匹配数据库的列表,其中一个是我选择的获取所有表的列表,一旦选择该列表,我就会获取该表中所有字段的列表,所有字段都在同一个文本字段中。
任何帮助将不胜感激。
谢谢
我
I am building a django based application and its time to add the DHTML stuff.
One of my fields represent a database field with this format databaseName.tableName.fieldName
I would like to have javascript autocompletion in three levels, say once I type part of the database names I get a list of all matching databases, one that is selected I get a list of all tables, and once that is selected I get a list of all fields in that table, all in the same textfield.
Any help would be appreciated.
Thanks
M
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
设法使用 jquery.autocomplete (multiple: true) 选项来完成。
managed to do with jquery.autocomplete (multiple: true) option.