我希望代码在JavaScript中选择后从下拉列表中删除选项

时间:2011-01-26 09:36:53

标签: javascript html

我希望代码在JavaScript中选择后从下拉列表中删除选项。什么是最好的解决方案?

1 个答案:

答案 0 :(得分:3)

selectBox = document.getElementById("mySelectBoxId");
toRemove = selectBox.options[selectBox.selectedIndex];
selectBox.removeChild(toRemove);

无论如何,我建议您使用jQuery或MooTools(或任何JavaScript框架),而不是使用粗暴的JavaScript。