我使用Daniel Farrell的bootstrap组合框。 我想知道如何在Jquery或JS中添加选项?
<select id="select_combo" class="combobox form-control" onChange="addOptions()">
<option></option>
</select>
$(document).ready(function(){
$('.combobox').combobox({bsVersion: '3', clearIfNoMatch: false, appendId:"adr_code_postal"});
});
function addOptions() {
$('#select_combo').append(new Option('test', 'test', true, true));
}