1. 程式人生 > >javascript 獲取DropDownList選定值的方法

javascript 獲取DropDownList選定值的方法

index select clas -h asc lan title selected tle

<script type="text/javascript" language="javascript">

function submitData() {
var d = document.getElementById("<%=DropDownList1.ClientID %>");//根據DropDownList的客戶端ID獲取該控件
var typeValue = d.options[d.selectedIndex].value;//獲取DropDownList當前選中值
alert(typeValue);//測試

}
}

</script>

javascript 獲取DropDownList選定值的方法