基于建议 jquery 插件自动填充下拉框

发布于 2024-10-17 01:35:09 字数 728 浏览 3 评论 0原文

您知道具有以下功能的 jQuery 自动完成插件吗?我已经搜索过了,但我似乎找不到我要找的东西。因此,这里是:

  1. 一个行为类似于下拉过滤器的控件,
  2. 除了下拉过滤器的数据在页面加载时未填充
  3. 下拉过滤器的数据取决于用户在输入框中输入的内容
  4. 因此,有一个输入框,并且自动建议的项目位于li上,
  5. 如果用户没有输入任何内容或他输入的内容/她输入的内容与数据库中的任何内容都不匹配,如果默认为一个值
  6. 我将其称为下拉自动建议,而不是下拉过滤器 。因为下拉过滤器中已经包含您可以通过键入进行过滤的项目。下拉自动建议根据用户输入填充下拉列表。我将其称为下拉菜单,因为用户可能无法输入自由文本

这是我目前可以获得的最接近的一个。 http://wharsojo.wordpress.com/2008/02/18/ jquery-facebook-autocomplete/ 这是多项选择,我只需要一项。下拉框似乎不可配置,因为我计划添加用户的头像和位置。

do you know a jQuery Autocomplete Plugin that has the following features. I have searched SO, but I can't seem to find what I'm looking for. So, here it is:

  1. A control that acts like a dropdown filter
  2. Except data for the dropdown filter is not populated on page load
  3. Data for the dropdown filters depends on what the user types on the input box
  4. Thus, there is an input box and autosuggested items are on an li
  5. If the user does not type anything or what he/she has typed doesn't match anything on the database, if will default to a value
  6. I call this a dropdown autosuggest not a dropdown filter. Because a dropdown filter already has items in it which you could filter by typing. A dropdown autosuggest populates the dropdown based on user input. I call this a dropdown because the user may not input freetext

This is the closest one I could get for now. http://wharsojo.wordpress.com/2008/02/18/jquery-facebook-autocomplete/ and this is multiple selection in which I only need one. The drop-down box doesn't seem to be configurable as I am planning to add the avatar and location of the user.

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

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

发布评论

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

评论(2

臻嫒无言 2024-10-24 01:35:09

我想说,您可以通过使用 JQueryUI Autocomplete 来实现这一切。

  1. 这就是它的作用,
  2. 当输入特定数量的字符时,通过 Ajax 加载数据
  3. 也是 Ajax 事物和服务器端脚本的一部分,
  4. 正是它的工作方式。带有附加 ul 的输入框
  5. 您可以在自动完成的更改事件中检查这一点
  6. 没有项目,在用户输入后获取新项目。

我希望这对您有所帮助。

i would say, that you can achieve all this by using JQueryUI Autocomplete.

  1. Thats what it does
  2. Load Data via Ajax when a specific number of caracters has been entered
  3. Also part of the Ajax thing and serverside script
  4. Exactly the way it Works. Inputbox with attached ul
  5. You can check for this in the change-event of autocomplete
  6. Has no items, gets new Items after userinput.

I hope this has helped you in some way.

GRAY°灰色天空 2024-10-24 01:35:09

你好,
我有一个与您的要求非常相似的 jquery 包,它非常简单,没有任何样式。
如需演示,请访问:
http://blog.prakashgobhaju.com.np/demos/jquery/auto -suggest.html

你也会找到下载链接

我希望这对你有帮助

HI,
I've a very similar jquery package as your requirement, its very simple, without any styling..
for demo go to:
http://blog.prakashgobhaju.com.np/demos/jquery/auto-suggest.html

you'll find there download link too

I hope this will help you

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