js获取和设置dropdownlist的选定项
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了js获取和设置dropdownlist的选定项相关的知识,希望对你有一定的参考价值。
如题!js获取dropdownlist服务器控件的选定项(asp.net),比如一个dropdownlist的ID=“DllList”,我用document.getElementById("DllList").value或者document.getElementById("DllList").selectIndex类似的方法都获取不到,请求高人指点?
参考技术A 你是要获取下拉框选定项的text值吧,那应该用document.getElementById("DllList").options[document.getElementById("DllList").selectedIndex].text 参考技术B 要用
document.getElementById('<%=DllList.ClientID%>').value本回答被提问者采纳
怎么通过JS判断选定DropDownList的某一项
参考技术A 用JS获取 DropDownList 选中的值, 跟JS获取HTML元素里面的下拉框一样的撒,只是这里的控件是服务器控件 参考技术B document.getItemById("id").value()以上是关于js获取和设置dropdownlist的选定项的主要内容,如果未能解决你的问题,请参考以下文章