Jquery UI 自动完成
请让我知道如何在不选择列表中第一项的情况下获取它的值?
基本上,我输入一些字母,会出现一些选项,但用户不会选择或突出显示它们。我只想捕获列表中的第一个选项并将其保存在变量中。
我将不胜感激任何帮助。
是的,我确实先浏览了该网站,但没有找到答案。
非常感谢
Please let me know how to get the value of the first item in the list without it being selected?
Basically I type in some letters a few options come up but the user does not select or highlight them. I just want to capture the first option in the list and save that in a variable.
I would appreciate any help.
And yes I did have a look on the site first but did not spot the answer.
Many thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
jQuery 自动完成生成的列表具有类似于
ui-autocomplete ui-menu ui-widget ui-widget-content ui-corner-all
$('.ui-autocomplete li:first')
将为您提供第一个 li
The jQuery autocomplete generated list has class similar to
ui-autocomplete ui-menu ui-widget ui-widget-content ui-corner-all
$('.ui-autocomplete li:first')
will get you the first li