梦想的起点

my shop:http://fashion-for-you.taobao.com/

导航

JS获取DropDownList的value值与text值.txt

 <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>

posted on 2010-03-02 08:17  梦想的起点  阅读(854)  评论(2编辑  收藏  举报