jQuery Autocomplete 插件 - 如何动态更新数据列表?
我正在使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试:
//已编辑,忘记了关键的 .length :)
Try:
//EDITED, forgot .length which is key :)