检测 jQuery 自动完成是否有结果

发布于 2025-01-07 15:34:44 字数 303 浏览 1 评论 0原文

我正在尝试编写一个脚本,需要知道自动完成下拉列表是否包含任何结果。这是我目前所拥有的,但由于某种原因 IF 不起作用(即内部代码没有被触发)。

if($("ul.ui-autocomplete li").length == 0){
    $('div#autocomplete').replaceWith('<h2>' + $(this).val() + '</h2>');
    return false;
}

似乎仍然有结果,只是被隐藏了。那么如何查看是否有结果或者下拉自动完成列表是否可见?

I'm trying to write a script that needs to know whether or not the autocomplete dropdown contains any results. This is what I currently have, but for some reason the IF is not working (ie. the code inside is not being triggered).

if($("ul.ui-autocomplete li").length == 0){
    $('div#autocomplete').replaceWith('<h2>' + $(this).val() + '</h2>');
    return false;
}

It seems like there are still results, they're just hidden. So how can I see if there are results or if the dropdown autocomplete list is visible?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

空城旧梦 2025-01-14 15:34:44
//in the open event:
open: function(event,ui){
    var len = $('.ui-autocomplete > li').length;
    console.log(len < 1);
}
//in the open event:
open: function(event,ui){
    var len = $('.ui-autocomplete > li').length;
    console.log(len < 1);
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文