萬盛學電腦網

 萬盛學電腦網 >> 腳本專題 >> javascript >> JS動態添加與刪除select中的Option對象

JS動態添加與刪除select中的Option對象

 本篇文章主要介紹了JS動態添加與刪除select中的Option對象(示例代碼) 需要的朋友可以過來參考下,希望對大家有所幫助

如下所示: 代碼如下: //動態刪除select中的所有options:    function delAllOptions(){         document.getElementById("user_dm").options.length=0;    }     //動態刪除select中的某一項option:     function delOneOption(index){         document.getElementById("user_dm").options.remove(index);    }   // 動態添加select中的項option:     function addOneOption(){         //document.getElementById("user_dm").options.add(new Option(2,"mytest"));          var selectObj=document.getElementById("user_dm");      alert(selectObj.length);      selectObj.options[selectObj.length] = new Option("mytest", "2");   }    
copyright © 萬盛學電腦網 all rights reserved