JS获取DropDownList的值

1 var ddlType = document.getElementById("<%=ddlType.ClientID %>"); //获取DropDownList控件
2 var type = ddlType.options[ddlType.selectedIndex].value; //获取选择项的值
原文地址:https://www.cnblogs.com/tony312ws/p/2279105.html