注:楼上select.options.length=0;中的select为 你的select的id

解决方案 »

  1.   

    document.getElementById("selectid").length = 0;
      

  2.   

    document.getElementById("selectid").options.length = 0; //楼上的少了点东西
    document.formName.selectName.options.length = 0;
      

  3.   

    document.getElementById("selectid").options.length = 0;
      

  4.   

    while(oSelect.options.length>0){
        oSelect.remove(0);
    }
      

  5.   

    借楼主的贴子问一下:
    如何删除select中的某一个<option>??
      

  6.   

    回梅子.俺可没少东西啊..直接的把它的length属性值赋为0就成了的..呵呵...