如何让jquery在按向上和向下时自动完成选择一个项目
当我使用 jquery 自动完成时,每次输入内容时,都会自动选择列表的第一项。例如,如果列表 if [ajax、asp、autocomplete],当我键入“a”时,这三个项目将显示,并且第一个项目会突出显示。这是一种在我按 up 或 down 之前不会突出显示任何项目的方法。
when I use jquery autocomplete, everytime I type something , first item of the list is automatically selected . For instance , if the list if [ ajax , asp , autocomplete ] , when I type 'a' , these three will show up and the first item is highlighted . Is a way that no item is highlighted until I press up or down .
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
尝试将其添加到选项中:
或者,您可能想尝试一下,甚至另外尝试:
Try adding this to the options:
Alternatively, you might want to try this instead or even additionally:
您需要实现 Keyup 和 Keydown 事件,
我为您提供了我项目中的代码,请看看它是否有用
You need to implement Keyup and Keydown events
I gave you code from my project , please see if it useful