Javascript获取DropDownList选项信息

这是一个asp.net普通javascript的练习,是使用javascript去获取DropDownList Selected 选项的信息,如text,value和index等。

Insus.NET在.aspx.cs内准备好一些数据,是有关浏览器相关信息的,并写在泛型Dictionary<T,V>:

 private Dictionary<string, string> GetBrowser()
    {
        Dictionary<string, string> dict = new Dictionary<string, string>();
        dict.Add("google", "chrome");
        dict.Add("Mozilla", "firefox");
        dict.Add("microsoft", "ie");
        dict.Add("opera", "opera");
        dict.Add("safari", "apple");
        return dict;
    }
View Code


在网页中,拉(PULL)DropDownList控件入网页.aspx中。

 <asp:DropDownList ID="DropDownList1" runat="server">               
            </asp:DropDownList>
View Code


去.aspx.cs为DropDownList控件绑定数据:



写Javascript脚本:

function GetSelectedInfo() {
            var ddl = document.getElementById('<% =DropDownList1.ClientID %>');
            var info = "      The value is: " + ddl.options[ddl.selectedIndex].value + ".\n\r                text is: " +
                ddl.options[ddl.selectedIndex].text + ".\n\r option index is: " +
                ddl.selectedIndex;
            alert(info);
        }
View Code


为了能执行上面的javascript脚本,Insus.NET在网页拉一个Button,然后让这个Button 执行一个OnClientClick客户端事件。

 <asp:Button ID="Button1" runat="server" Text="Get info" OnClientClick="GetSelectedInfo();" />


OK,试运行看看:

 

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值