<select name="set1" id="set1">
   <option value="1">11</option>
   <option value="1">22</option>
</select>
<input type="button" value="ADD option" onclick="func33()">
function func33(){document.getElementById("set1").options[document.getElementById("set1").length] = new Option("33", "3");}

解决方案 »

  1.   

    十分感谢mingxuan3000(铭轩),这个方法OK,
    我是从数据库读出来的数据,动态NEW出OPITON的行数,
    如何删除第一行本身存在的空OPTION列
      

  2.   

    function func33(){
    document.getElementById("set1").options[0].removeNode(true);//删除第1个
    document.getElementById("set1").options[document.getElementById("set1").length] = new Option("33", "3");}
      

  3.   

    厉害啊!
    我试了一下,这样也可以删除
    document.getElementById("dd").options.remove(0);
    太感谢了!!