7

通过使用select2.js v4 插件,当我使用本地数组数据作为源时,如何设置默认选择值?

例如使用此代码

var data_names = [{
  id: 0,
  text: "Henri",
}, {
  id: 1,
  text: "John",
}, {
  id: 2,
  text: "Victor",
}, {
  id: 3,
  text: "Marie",
}];

$('select').select2({
  data: data_names,
});

如何将 id 3 设置为默认选择值?

4

4 回答 4

5
$('.select').select2({
        data: data_names,
    }).select2("val",3);
于 2015-07-28T18:11:43.877 回答
5

这对我有用 V4.0.3

$('.select').select2({
    data: data_names,
})
$('select').val(3);
$('select').trigger('change.select2');
于 2017-04-21T13:22:11.540 回答
4

最好发送另一个属性(在我下面的例子中选择)并使用它来设置默认值。我做了类似下面的事情 -

var data_names = [{
  id: 0,
  text: "Henri",
}, {
  id: 1,
  text: "John",
}, {
  id: 2,
  text: "Victor",
}, {
  id: 3,
  text: "Marie",
  selected: true
}];

然后做

            $(".select").select2({
                data : data_names
            });
            data_names.forEach(function(name){
                if(name.selected) { 
                   $(".select").select2('val',name.id);
                }
            });
于 2017-12-10T16:21:03.113 回答
2

它为我工作。

$('#select').select2({data: data_names}).val(3).trigger('change')

于 2018-05-22T09:10:43.093 回答