我正在尝试设置select2单选下拉列表的默认值:http://ivaynberg.github.io/select2/。
我有select2下拉工作。但我不知道如何设置默认值。例如,假设值列表是 - test1,test2,test3。如何将“test1”设置为单个选择下拉列表的默认值。
$(function(){
var testData = [{id:0, text:"test1"}, {id:1, text:"test2"}, {id:2, text:"test3"}];
$('#select2customdata').select2({placeholder:"Search Stuff", data: {results: testData, text:'text'}});
$('#select2customdata').select2().select2("val", "test1");
});
html有:
<input type="hidden" id="select2customdata" style="width:300px"> </input>
如您所见,我使用select2(“val”,“some-val”)来设置默认值。它对我不起作用。
编辑:我想出了解决方案,如果使用val,则必须在选项中使用initselection。其他解决方案是使用:
$('#select2customdata').select2("data", {"id": id_val, "text": text_val})