您现在的位置: 万盛学电脑网 >> 程序编程 >> 脚本专题 >> javascript >> 正文

JS获取DropDownList的value值与text值

作者:佚名    责任编辑:admin    更新时间:2022-06-22

 本篇文章主要是对JS获取DropDownList的value值与text值的示例代码进行了介绍,需要的朋友可以过来参考下,希望对大家有所帮助

相关JS: 代码如下: <script type="text/javascript" language="javascript">     function SearchChange()     {         var ddl = document.getElementById("DropDownList1")            var index = ddl.selectedIndex;              var Value = ddl.options[index].value;            var Text = ddl.options[index].text;           alert(Value);     }     </script>   调用: 代码如下: <asp:DropDownList ID="DropDownList1" runat="server" onchange="SearchChange();">     <asp:ListItem Value="0">111</asp:ListItem>     <asp:ListItem Value="1">222</asp:ListItem>     <asp:ListItem Value="2">333</asp:ListItem> </asp:DropDownList