我希望代码在JavaScript中选择后从下拉列表中删除选项。什么是最好的解决方案?
答案 0 :(得分:3)
selectBox = document.getElementById("mySelectBoxId");
toRemove = selectBox.options[selectBox.selectedIndex];
selectBox.removeChild(toRemove);
无论如何,我建议您使用jQuery或MooTools(或任何JavaScript框架),而不是使用粗暴的JavaScript。