在 HTML 输入中实现自动完成
我设计了一个网站。我使用 PHP、XML 和 HTML。我的 HTML 文件中有输入表单,我想在输入表单中实现自动建议。 当您在谷歌的输入表单中输入搜索短语时,您的浏览器中会出现许多建议。我确实想实现这个。
我必须做什么?我需要哪种语言/界面/信息?
提前致谢。
I devise a web site. I am using PHP, XML and HTML. There is input forms in my HTML files and I want to implement auto-suggestion in input forms.
When you enter search phrase to google's input form, many suggestions appeared in your browser. I exactly want to implement this.
What must I do? Which language/interface/information I need to?
thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
自动完成是通过 JavaScript 完成的。查看 jQuery 自动完成插件,这是一个非常容易上手的库。您可以在 JavaScript 中包含用于自动完成的值,也可以向提供建议的 PHP 脚本发出 AJAX 请求。如果您需要更多帮助,请随时发表评论。
Autocomplete is done via JavaScript. Check out the jQuery Autocomplete plugin for a pretty easily library to get started with. You can either include the values to be used for autocomplete in the JavaScript, or you can make an AJAX request to a PHP script which provides suggestions. Feel free to comment if you'd like more help.
这将是完成它的最简单方法...
http://jqueryui.com/demos/autocomplete/< /a>
This will be the easiest way to get it done...
http://jqueryui.com/demos/autocomplete/
JQuery UI 是一个 JavaScript 框架,具有很好的自动完成实现: http://jqueryui.com/demos/autocomplete/< /a>
当然,您将需要 jquery 和 jquery ui javascript 框架。
JQuery UI is a javascript framework that has a nice autocomplete implementation: http://jqueryui.com/demos/autocomplete/
Of course you will need the jquery and jquery ui javascript frameworks.