<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);//测试
}
}
function submitData() {
var d = document.getElementById("<%=DropDownList1.ClientID %>");//根据DropDownList的客户端ID获取该控件
var typeValue = d.options[d.selectedIndex].value;//获取DropDownList当前选中值
alert(typeValue);//测试
}
}
</script>
本文转自悬魂博客园博客,原文链接:http://www.cnblogs.com/xuanhun/archive/2010/04/27/1722416.html,如需转载请自行联系原作者