JQuery 相当于 scriptaculous/prototype 的自动完成功能是什么?
Prototype/scriptaculous 可以在输入框中进行简单的自动建议。 它几乎是内置的。
我如何使用 JQuery 做到这一点?
Prototype/scriptaculous can do an easy autosuggest in the input box.
It's pretty much built in.
How can I do that with JQuery?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
jQuery 插件:自动完成
jQuery plugin: Autocomplete
如果您的意思是从服务器获取信息,那么您可以看看这个问题:
JQuery Auto Suggest Serverside
在客户端完成它是有风险的,因为你需要通过将所有数据发送给客户端,然后您只需在用户输入时进行搜索,所以我怀疑这是否是您所期望的。
If you mean something that will get the info from the server then you can look at this question:
JQuery Auto Suggest Serverside
It is risky to have it done on the client, as you need to pass all the data to the client, then you just search as the user types, so I doubt that is what you expect.