0
我有2個下拉菜單,如果我從第一個下拉框中選擇一個特定的選項,一組選項應該出現在另一個下拉框中,如果我選擇其他選項從第一個下拉菜單中選擇不同的選項應該在第二個下拉菜單中出現。基於從其他組合框中選擇的選項更改下拉選項
我試着做一個小提琴,但它不工作。
function createOption(value) {
el = document.createElement('option');
el.value = value;
el.innerHTML = value;
el.id = value;
document.getElementById('select').appendChild(el);
}
if(document.getElementById('Type').value === "CD"){
document.getElementById('select').innerHTML = '';
createOption('Volvo');
createOption('Saab');
createOption('Fiat');
};
else{
document.getElementById('select').innerHTML = '';
createOption('Wood');
createOption('Brick')
}
請幫助:)
有一噸的這些問題在SO已經,只是做一個搜索...順便說一句。 'option'不能有HTML,使用'text'而不是'innerHTML'。 – Teemu 2014-10-03 17:37:00