1.動態建立select
function createselect()
3.刪除所有選項option
function removeall()
4.刪除乙個選項option
function removeone()
5.獲得選項option的值
var obj=document.getelementbyid('myselect');
var index=obj.selectedindex; //序號,取當前選中選項的序號
var val = obj.options[index].value;
6.獲得選項option的文字
var obj=document.getelementbyid('myselect');
var index=obj.selectedindex; //序號,取當前選中選項的序號
var val = obj.options[index].text;
7.修改選項option
var obj=document.getelementbyid('myselect');
var index=obj.selectedindex; //序號,取當前選中選項的序號
var val = obj.options[index]=new option("新文字","新值");
8.刪除select
function removeselect()
整個例項的完整**如下:
改進版:在select中新增、修改、刪除option元素
function watch_ini(){ // 初始
for(var i=0; i
整個例項的完整**如下:
用乙個字串建立乙個陣列方法:
-- **於網際網路
JS動態新增option和刪除option
僅供學習之用,留著隨時檢視 動態建立select function createselect 新增選項option function addoption 刪除所有選項option function removeall 刪除乙個選項option function removeone 獲得選項optio...
JS動態新增option和刪除option
1.動態建立select function createselect 2.新增選項option function addoption 3.刪除所有選項option function removeall 4.刪除乙個選項option function removeone 5.獲得選項option的值 ...
JS動態新增option和刪除option
本文 自http www.jb51.net article 35205.htm 僅供學習之用,留著隨時檢視 動態建立select function createselect 新增選項option function addoption 刪除所有選項option function removeall 刪...