码迷,mamicode.com
首页 > Web开发 > 详细

JS获取DropDownList的value值与text值

时间:2014-05-30 04:53:51      阅读:175      评论:0      收藏:0      [点我收藏+]

标签:c   style   class   code   java   a   

<script type="text/javascript" language="javascript">
    function SearchChange()
    {
        var ddl = document.getElementById(‘<%=DropDownList1.ClientID %>‘)   
        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>

JS获取DropDownList的value值与text值,布布扣,bubuko.com

JS获取DropDownList的value值与text值

标签:c   style   class   code   java   a   

原文地址:http://www.cnblogs.com/ricky_li/p/3756987.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!