DIV CSS 佈局教程網

 DIV+CSS佈局教程網 >> 網頁腳本 >> JavaScript入門知識 >> JavaScript綜合知識 >> JS動態添加與刪除select中的Option對象
JS動態添加與刪除select中的Option對象
編輯:JavaScript綜合知識     

 本篇文章主要介紹了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");   }    
XML學習教程| jQuery入門知識| AJAX入門| Dreamweaver教程| Fireworks入門知識| SEO技巧| SEO優化集錦|
Copyright © DIV+CSS佈局教程網 All Rights Reserved