首页 > 编程 > JavaScript > 正文

JS获取DropDownList的value值与text值的示例代码

2019-11-20 21:18:13
字体:
来源:转载
供稿:网友
相关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
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表