python 中的自动完成文本框示例 +谷歌应用引擎
对于我的谷歌应用程序引擎应用程序,我需要包含一个自动完成器文本框,它将显示以文本框值开头的名称。并且该名称将从谷歌应用程序引擎数据存储中检索。
请任何好的教程或示例代码。
更新:请回答
我创建了一个示例 HTML 代码:dl.dropbox.com/u/7384181/autocomplete/autocomplete.html 。 在此 html 页面中,我动态创建了文本框。因此,目前我仅在第一个文本框(txtProduct1)中分配自动完成功能。如何在其余所有要动态创建的文本框中分配自动完成功能?
For my google app engine application, I need to include a autocompleter Textbox which will show the name starting with the textbox value.And the name will retrieve from the google app engine datastore.
Any good tutorial or sample code please.
Update: Please Answer for this
I created a sample HTML code : dl.dropbox.com/u/7384181/autocomplete/autocomplete.html .
In this html page i have creating the textbox dinamically.So currently i assign the autocomplete in the first textbox(txtProduct1) only. How do i assign the autocomplete in rest all the textbox which is going to create dynamically ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
查看jquery自动完成
您可以在此处 HTML :
< strong>python-controller:
jquery 自动完成插件默认使用变量 q
将自动完成应用于类
$
You can have a look at the jquery auto complete here
HTML :
python-controller:
jquery autocomplete plugin by default uses variable q
Apply the autocomplete to a class
$
查看 JQuery 的 autocomplete 插件,您可以使用 django 模板标签来填充数据。以下是数据以逗号分隔的示例。
Python:
template.html:
Look into JQuery's autocomplete plugin, you can use a django template tag to populate the data. Below is an example if your data is separated by commas.
Python:
template.html:
通过 GAE Python 和 YUI3 自动完成插件使用自动完成功能 。
Using autocomplete with GAE Python and YUI3 AutoComplete Plugin.