我有一个form
,有两个组合框。一个是正常的,另一个是dijit.form.Combobox
。
<select id="mySel"></select>
<select dojotype="dijit.form.ComboBox" id="dsel"/>
我可以使用以下脚本将项目添加到正常项目中。
var opt = mySel.appendChild(document.createElement('option'));
opt.text = "My sample text"
但同样的问题不适用于dijit combo
。怎么做?