用下面的HTML:動態添加選項和optgroups在選擇二
<input type='hidden' id='cantseeme'>
我有沒有問題動態創建一個選擇二控制,並加入我的選擇:
// simplified example
var select2_ary = [];
select2_ary.push({
id : "one",
text : "one"
});
select2_ary.push({
id : "two",
text : "two"
});
$("#cantseeme").select2({
placeholder : "Pick a number",
data : select2_ary
});
不過,我可以似乎不知道如何添加optgroups
這種方式。我在github上發現了this討論,並在博客上發現了this文章,但前者似乎沒有討論動態optgroup
的補充,我根本無法對後者有任何意義。
任何人有任何想法?
* facepalm *非常感謝。我錯過了這一點,我感到非常愚蠢。 Tbh,感到驚訝的是之前沒有人問過這個問題! –
koala_dev,它看起來像你提交的小提琴不再有效 – IcedDante