DIV CSS 佈局教程網

 DIV+CSS佈局教程網 >> 網頁腳本 >> JavaScript入門知識 >> JavaScript綜合知識 >> JS獲取DropDownList的value值與text值
JS獲取DropDownList的value值與text值
編輯:JavaScript綜合知識     

 本篇文章主要是對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    
XML學習教程| jQuery入門知識| AJAX入門| Dreamweaver教程| Fireworks入門知識| SEO技巧| SEO優化集錦|
Copyright © DIV+CSS佈局教程網 All Rights Reserved