来自数组的 AutoSuggest

发布于 2024-09-25 15:27:50 字数 378 浏览 6 评论 0原文

我有一个 php 脚本,它以这种形式生成 JS 数组,

new Array(

    new Array("Maine", 1), 

    new Array("Maryland", 2), 

    new Array("Massachusetts", 3), 

    new Array("Michigan", 4), 

    new Array("Minnesota", 5), 

    new Array("Mississippi", 6), 

    new Array("Missouri", 7), 

    new Array("Montana", 8)

);

有人可以建议一下,如何为搜索表单实现自动建议吗?

谢谢

I have a php script which generates JS array in this form

new Array(

    new Array("Maine", 1), 

    new Array("Maryland", 2), 

    new Array("Massachusetts", 3), 

    new Array("Michigan", 4), 

    new Array("Minnesota", 5), 

    new Array("Mississippi", 6), 

    new Array("Missouri", 7), 

    new Array("Montana", 8)

);

can some one please suggest , how to implement a Auto Suggestion for the search form ?

Thanks

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

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

发布评论

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

评论(1

蹲墙角沉默 2024-10-02 15:27:50

使用 jQuery UI 自动完成

可以自定义自动完成功能以使其工作
借助各种数据源,只需
指定源选项。一个数据
来源可以是:

  • 包含本地数据的数组
  • 一个字符串,指定 URL
  • 回调

本地数据可以是一个简单的字符串数组,
或者它包含每个项目的对象
在数组中,带有标签或
值属性或两者。标签
属性显示在
建议菜单。该值将是
之后插入到输入元素中
用户从中选择了一些东西
菜单。如果只有一个属性
指定,它将用于两者,
例如。如果你只提供
值属性,该值也将
用作标签。

Use jQuery UI autocomplete:

Autocomplete can be customized to work
with various data sources, by just
specifying the source option. A data
source can be:

  • an Array with local data
  • a String, specifying a URL
  • a Callback

The local data can be a simple Array of Strings,
or it contains Objects for each item
in the array, with either a label or
value property or both. The label
property is displayed in the
suggestion menu. The value will be
inserted into the input element after
the user selected something from the
menu. If just one property is
specified, it will be used for both,
eg. if you provide only
value-properties, the value will also
be used as the label.

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