js 中调用DropDownList
在asp.net中可以
DropDownList1.SelectedItem.Text
取到DropDownList1的值
在javascript中怎么取?
对js不熟,求教……
------解决方案--------------------document.getElementById(dropdownlistclientid).value
------解决方案--------------------var value = document.getElementById( "DropDownList1 ").value;