程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> .NET網頁編程 >> ASP.NET >> ASP.NET基礎 >> DropDownList添加客戶端下拉事件操作

DropDownList添加客戶端下拉事件操作

編輯:ASP.NET基礎

如果要想給 DropDownList 服務器控件添加客戶端下拉事件,我們可以強制給它添加 onchange 事件,盡管在控件中沒有這個方法的提示。添加完這個事件還不能達到目的,還要設置 AutoPostBack 屬性為 false,不讓它回發後台事件。
以下就是為大家分享的代碼:

<html xmlns="http://www.w3.org/1999/xhtml" >
<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,就是這麼簡單!

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved