如何防止select2标签中的自动排序(v4)

时间:2015-12-18 13:23:24

标签: javascript jquery jquery-select2

我正在创建一个使用多个select2的项目。一切都很好,问题是我必须阻止标签(及其结果数据数组)自动排序。我已经对它们进行了搜索,但大多数答案都是旧版本的选择。在select2中是否有旗帜或其他东西,我不知道?

$.getJSON("countries.json").done( function(data) {
       $(".country-select").select2({
            placeholder: "Select Country",
            allowClear: true,
            data: data,
            maximumSelectionLength: 5
        })

$(".country-select").change(function() { 
    var selected = $(".country-select").select2('data');
}

这是我的代码,我希望将所有未排序的数据存储在选定的位置。我在Select2: How to prevent tags sorting中找到了一个解决方案,但它将所选元素附加在选项的末尾。

0 个答案:

没有答案