我試圖填充HTML與JavaScript數組選擇,你們可以幫我做這個工作,下面是我的代碼填充HTML與JavaScript數組
外部JavaScript(我發現這個代碼在互聯網上的某個地方)
function setRuleName()
{ var myCars=new Array("Saab","Volvo","BMW");
var sel = document.getElementById("dropping") // find the drop down
for (var i in myCars)
{ // loop through all elements
var opt = document.createElement("option"); // Create the new element
opt.value = title[i]; // set the value
opt.text = title[i]; // set the text
sel.appendChild(opt); // add it to the select
}
}
HTML代碼
<Select onclick="setRuleName();" id="dropping" >
</Select>
應'myCars [I]'不'標題[I]' – ashley
已經嘗試將其更改爲myCars ash仍然不工作 – user3287181
您不應該調用'onclick'函數,或者每次單擊時都會附加'option's。 – Skwal