页面中用的DropDownList控件时,需要用javascript客户端脚本进行验证时,
var ddl = document.getElementById("控件名");
取得选中的列的值
ddl.options[ddl.selectedIndex].text
取得选中值相对应的ID
ddl.options[ddl.selectedIndex].value
转载于:https://www.cnblogs.com/suzongwei/archive/2007/09/27/907720.html