📅  最后修改于: 2022-03-11 14:53:38.357000             🧑  作者: Mango
var example_array = {
ValueA : 'Text A',
ValueB : 'Text B',
ValueC : 'Text C'
};
var select = document.getElementById("example-select");
for(index in example_array) {
select.options[select.options.length] = new Option(example_array[index], index);
}