DIV CSS 佈局教程網

 DIV+CSS佈局教程網 >> 網頁腳本 >> HTML基礎知識 >> 關於HTML >> Html中Select在JS中的操作
Html中Select在JS中的操作
編輯:關於HTML     

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=某個值就行了。

XML學習教程| jQuery入門知識| AJAX入門| Dreamweaver教程| Fireworks入門知識| SEO技巧| SEO優化集錦|
Copyright © DIV+CSS佈局教程網 All Rights Reserved