Html中Select在JS中的操作
//添加
var Select1= document.getElementById("Select1");
1.Select1.options[0]=new Option('a','0');
或
2.Select1.options.add(new Option('a','0'));
其中1的options[0],0是索引,所以好一點
//獲取當前的value值
var www=Select1.value;
//獲取當前的text值
var w=Select1.options[Select1.selectedIndex].text;
//動態刪除select中的所有options
Select1.options.length=0;
//動態刪除select中的某一項option:
Select1.options.remove(indx);
//獲取value
Select1.options[Select1.selectedIndex].value
//獲取value
Select1.options[Select1.selectedIndex].text
//給select賦值
Select1.value=某個值就行了。