javascript中取得asp.net的DropDownList控件的值

页面中用的DropDownList控件时,需要用javascript客户端脚本进行验证时,

var ddl = document.getElementById("控件名");
取得选中的列的值
ddl.options[ddl.selectedIndex].text
取得选中值相对应的ID
ddl.options[ddl.selectedIndex].value
posted @ 2007-09-27 11:12  单车骑客  阅读(3441)  评论(0编辑  收藏  举报