dropdownlist事件?如何用js获取下拉框dropdownlist显示的值
一、如何设置DropDownList的值被选中
设置数据表选中的值:dropdowslist.selectedIndex=-1dropdownlist.Items.findbyvalue(你的值).selected=true或dropdownlist.Items.findbytext(你的值).selected=trueforexample:drop1.Items.FindByValue("5").Selected=true;drop1.Items.FindByText("hello").Selected=true;
二、如何用js获取下拉框dropdownlist显示的值
这么写就可以获得1、2、3对应的A、B、C了varselect=document.getElementById("ddlType");alert(select.options[select.selectedIndex].innerText);
三、dropdownlist怎么获取数据库的字段值
1.首先取得数据源:Dropdownlist.DataSource=ds;
2.然后绑定相应的字段值1)绑定数据库字段值相应的展示:Dropdownlist.DataValueField="schooldescription";2)绑定数据库字段值:Dropdownlist.DataTextField="schoolName";
3.数据绑定:Dropdownlist.DataBind();