JS获取Dropdownlist选中值

var dropDownList = document.getElementById("ddl_sheng"); //获取DropDownList控件
var dropDownListValue = dropDownList.options[dropDownList.selectedIndex].value; //获取选择项的值
原文地址:https://www.cnblogs.com/jkyweb/p/3216939.html