gpt4 book ai didi

javascript - select2 获取下拉选项数组列表

转载 作者:行者123 更新时间:2023-12-01 04:47:52 27 4
gpt4 key购买 nike

我正在使用“select2-selecting”事件,并且想要获取下拉列表中包含 id 和标签的数组。

我的代码是:

$('.mySelect').select2({ ... some options}).on("select2-selecting", function(e) {
// I need to get an array with dropdown values

});

我可以通过使用 $(this).select2('data') 获取选定的值,并且可以通过 $(this).select2('dropdown'); 获取下拉选择器;但如何获取带有 ids 的下拉列表数组?

最佳答案

使用'select2-loaded'事件。它在'select2-selecting'之前触发,您可以获得实际的下拉列表。 Example

$('.mySelect').on('select2-loaded', function(e) {
dropDownList = e.items.results;
}).on('select2-selecting', function(e) {
console.log(dropDownList);
});

关于javascript - select2 获取下拉选项数组列表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26571913/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com