<select id=a1>
<option>1
<option>2
<option>3
</select>
<script>
a1.options[2].removeNode(true); //刪除第三個,如果刪除第二個,就用options[1]
</script>//刪除某下拉框中的某一項
<select id=a1>
<option>1
<option>2
<option>3
</select>
<script>
a1.options[2].removeNode(true); //刪除第三個,如果刪除第二個,就用options[1]
</script>//刪除某下拉框中的某一項