在我的网站中实现自动完成
我正在开发一个网站,我打算在其中提供搜索功能。 我正在 PHP/MYSQL 中开发它,并且我已经编写了执行搜索的脚本。 我希望在用户输入时在搜索框中提供自动完成或建议的搜索选项,我可以知道我的选择是什么以及如何使用它们?
我尝试过 YUI Autocomplete,它对我来说看起来不错,但是我不明白它说的是使用本地代理作为数据源。 有人可以帮我从这里出去吗?
i am developing a website where i intend to provide the search feature. I am developing it in PHP/MYSQL and i have written the script to perform the search. I wish to provide autocomplete or suggested searches option in the search box as the user types, can i know what are my choices and how can i make use of them?
I had tried YUI Autocomplete, it looks good to me, however i do not understand when it says using a local proxy for the datasource. Can any one help me out here?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
考虑尝试 Scriptaculous 自动完成。 它很容易实现。
Consider trying the Scriptaculous autocomplete. It's very easy to implement.
文档上到底说了些什么? (您能否提供一个链接)
通过本地代理我认为这意味着另一个域上的远程 Web 服务或 API 的代理。 (除非脚本在同一域上执行,否则您无法发出请求)。 http://developer.yahoo.com/javascript/howto-proxy.html
what does it exactly say on the documentation? (can you provide a link)
by local proxy I would think it means a proxy to a remote web service or API on another domain. (you can't make requests unless scripts are executed on the same domain). http://developer.yahoo.com/javascript/howto-proxy.html
我使用 jQuery autocompletex
I used jQuery autocompletex