1. 程式人生 > >HTML 表單From獲取Select(多選或單選)中的選中值

HTML 表單From獲取Select(多選或單選)中的選中值

HTML 表單中獲取Select(多選或單選)中的選中值

1. 獲取表單中的Select物件
var a = document.getElementById("設定的ID");
2. 可以使用Select物件的Options[ ]陣列
var b = a.options;
3. 使用option物件的selected屬性判斷是否被選擇
if(b[i].selected)
4. 迴圈判斷,並輸出被選擇option的value值
for(var i =0;i<b.length;i++)
{
    if(b[i].selected)
    {
        alert(b[i].value);
    }
}