jquery ui 自动完成建议在键入的单词之间输入空格后不会关闭

发布于 2024-12-11 21:43:44 字数 392 浏览 0 评论 0原文

您好,我之前打开过这个帖子 如何标记像 Facebook 或 Twitter 这样的 Feed 中的用户会这样做吗?。我正在使用 jquery 自动完成 &到目前为止,我有代码。

现在,当我输入@user-name 时,就会出现建议。但是当我按空格键时,建议仍然存在。理想情况下,当我按空格键时,建议应该消失,就像我们在 Facebook 中经历的那样。请帮助我获得理想的行为。谢谢你!

Hi I have previously opened this thread How to tag users in feed like Facebook or Twitter does?. I am working with jquery autocomplete & so far I have this code with me.

Now when I am entering @user-name the suggestions are appearing. But when I hit spacebar the suggestions still remain there. Ideally suggestions should disappear as I hit space bar as we experience in facebook. Please help me to get the ideal behaviour. Thank you!

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

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

发布评论

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

评论(1

暮光沉寂 2024-12-18 21:43:44

编辑您的代码,在第 45 行的 else 范围中再添加一行,

else
{
    $( "#birds" ).blur().focus();
    return false;
}

我确信它会解决问题。

Edit your code to add one more line to else scope on line number 45

else
{
    $( "#birds" ).blur().focus();
    return false;
}

I'm sure it will fix the problem.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文