我正在使用select2 jquery函数。创建具有多个选择的下拉列表。我能够做到。现在我需要从下拉列表中选择一些选项作为默认数据。你能帮助我吗?
data = [{id:1,text:"abc"},{id:2,text:"qwe"},{id:3,text:"def"}];
$("#test").select2({ theme: "bootstrap", data: dat });
// select option 2 as default selected I used below code
// but it is not working..
$("#test").select2("val", 2);