Posted in Javascript onDecember 20, 2013
如下所示:
//动态删除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"); }
JS动态添加与删除select中的Option对象(示例代码)
声明:登载此文出于传递更多信息之目的,并不意味着赞同其观点或证实其描述。
Reply on: @reply_date@
@reply_contents@