zoukankan      html  css  js  c++  java
  • DropDownList添加客户端下拉事件操作

    如果要想给 DropDownList 服务器控件添加客户端下拉事件,我们可以强制给它添加 onchange 事件,尽管在控件中没有这个方法的提示。添加完这个事件还不能达到目的,还要设置 AutoPostBack 属性为 false,不让它回发后台事件。

    <head runat="server">
      <title>DropDownList添加客户端下拉事件</title>
      <script type="text/javascript">
        function getDropDownList() {
          var ddl1 = document.getElementById("<%=ddl1.ClientID%>");
          var text = ddl1.options[ddl1.options.selectedIndex].text; //获取text值
          var value = ddl1.value;                  //获取value值
          alert("Text:" + ddl1.options[ddl1.options.selectedIndex].text + ", Value:" + ddl1.value);
        }
      </script>
    </head>
    <body>
    <form id="form1" runat="server">
      <asp:DropDownList ID="ddl1" runat="server" AutoPostBack="false" onchange="getDropDownList();">
        <asp:ListItem Text="T1" Value="V1" Selected="True"></asp:ListItem>
        <asp:ListItem Text="T2" Value="V2"></asp:ListItem>
        <asp:ListItem Text="T3" Value="V3"></asp:ListItem>
      </asp:DropDownList>
    </form>
    </body>
    </html>
    总结一下,也就是说,要想给DropDownList下拉框添加客户端下拉事件,必须做两步工作,一是添加强制onchange事件,二是把 AutoPostBack属性设为false,就是这么简单!
  • 相关阅读:
    Hadoop Gateway 部署
    java 命令--备忘
    整理下常用硬件性能参数
    python 脚本备份 mysql 数据库到 OSS
    pip 更换国内源
    记录闭包和立即执行函数
    Django 中文乱码问题&富文本显示
    mysql exceeded the 'max_questions' resource 记录
    sql server 数据字典的妙用
    Sublime Text指南
  • 原文地址:https://www.cnblogs.com/sjqq/p/6362512.html
Copyright © 2011-2022 走看看