jQuery Autocomplete 插件 - 如何动态更新数据列表?

发布于 2024-08-30 03:36:30 字数 461 浏览 3 评论 0原文

我正在使用 jQuery 自动完成插件作为智能输入框。我希望输入框中的第一个参数从一个数据集自动完成,然后选择该参数后更改第二个参数的数据集。

因此,如果我有以下内容:

    var foo = ['a','b','c'];
    var bar = ['x','y','z'];

    $("#input_box").autocomplete(
        foo, { multiple: true, multipleSeparator: " "}
            );

我希望能够在第一个参数自动完成后动态地将“foo”数据集更改为“bar”。

有什么想法如何做到这一点?

I am using the jQuery autocomplete plugin for a smart input box. I want the first parameter in the input box to be autocompleted from one dataset, then once that has been selected change the dataset for the second parameter.

So if I have the following:

    var foo = ['a','b','c'];
    var bar = ['x','y','z'];

    $("#input_box").autocomplete(
        foo, { multiple: true, multipleSeparator: " "}
            );

I want to be able to dynamically change the 'foo' dataset to 'bar' after the first parameter has been autocompleted.

Any ideas how to do this?

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

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

发布评论

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

评论(1

故事还在继续 2024-09-06 03:36:30

尝试:

var fubar = foo;
$("#input_box").autocomplete(
        fubar, { multiple: true, multipleSeparator: " "}
            ).live('keyup', function() {
               if($(this).val().length > 1)
                      fubar = bar;
               else   fubar = foo;
});

//已编辑,忘记了关键的 .length :)

Try:

var fubar = foo;
$("#input_box").autocomplete(
        fubar, { multiple: true, multipleSeparator: " "}
            ).live('keyup', function() {
               if($(this).val().length > 1)
                      fubar = bar;
               else   fubar = foo;
});

//EDITED, forgot .length which is key :)

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