答案 0 :(得分:1)
有关为现有<select>
元素创建和附加选项的详细信息,请参阅How to populate the options of a select element in javascript。
使用这种方法,这似乎与您所获得的最接近:
var select = document.getElementById("theOptions");
opt = document.createElement("option");
opt.innerHTML = "Select...";
select.appendChild(opt);
for(var i = 0; i < tableOptions.length; i++)
{
var opt = document.createElement("option");
opt.innerHTML = tableOptions[i][0];
select.appendChild(opt);
}