JQuery 自动完成显示最大结果
如何使用 JQuery UI 自动完成显示超过 10 个结果?
我试过了:
.autocomplete({
max: 50
});
没有运气。有什么想法吗?
How do you show more than 10 results with JQuery UI Autocomplete?
I've tried:
.autocomplete({
max: 50
});
with no luck. Any Ideas?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我实现 JQuery UI 自动完成的应用程序使用数据库查询将结果限制为 X 数量。
根据我的经验,JQuery UI 自动完成功能会列出您在匹配项中抛出的任何内容。
The applications that I have JQuery UI autocomplete implemented use the database query to limit the results to X amount.
It's been my experience that JQuery UI autocomplete will list anything you throw at that matches.