我想創建兩維數組並使用它填充下拉列表。
但我得到未捕獲SyntaxError:意外的字符串錯誤。
如何在javascript中使用二維數組填充下拉列表
var cuisines = ["001","Australian"],["002","American"];
var sel = document.getElementById('CuisineList');
for(var i = 0; i < cuisines.length; i++) {
var opt = document.createElement('option');
opt.innerHTML = cuisines[i][1];
opt.value = cuisines[i][0];
sel.appendChild(opt);
}
<select id="CuisineList"></select>
請幫助我。謝謝。
是的,一個。謝謝。 –