亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》
  • 首頁 > 
  • 教程 > 
  • 開發技術 > 
  • ASP.NET服務器端如何控件RadioButtonList,DropDownList,CheckBoxList的取值、賦值用法教程

ASP.NET服務器端如何控件RadioButtonList,DropDownList,CheckBoxList的取值、賦值用法教程

發布時間:2021-10-09 09:42:33 來源:億速云 閱讀:124 作者:iii 欄目:開發技術

這篇文章主要介紹“ASP.NET服務器端如何控件RadioButtonList,DropDownList,CheckBoxList的取值、賦值用法教程”,在日常操作中,相信很多人在ASP.NET服務器端如何控件RadioButtonList,DropDownList,CheckBoxList的取值、賦值用法教程問題上存在疑惑,小編查閱了各式資料,整理出簡單好用的操作方法,希望對大家解答”ASP.NET服務器端如何控件RadioButtonList,DropDownList,CheckBoxList的取值、賦值用法教程”的疑惑有所幫助!接下來,請跟著小編一起來學習吧!

這三個控件都有一個Items集合,可以用 RepeatLayout 和 RepeatDirection 屬性來控制列表的呈現形式。如果 RepeatLayout 的值為 Table,那么將在表中呈現列表。如果設置成 Flow,那么將在沒有任何表結構的情況下呈現列表。默認情況下,RepeatDirection 的值為 Vertical。將此屬性設置成 Horizontal 將會使列表水平呈現。

RadioButtonList:控件提供已選中一個選項的單項選擇列表(數據源單選)。與其他列表控件相似,RadioButtonList 有一個 Items 集合,其成員與列表中的每個項目相對應。

DropDownList:下拉列表選擇,對于有些形式的輸入,用戶必須從適用選項列表中選擇一個選項(下拉唯一選擇)。

CheckBoxList:多選列表,將數據源以橫向或縱向方式呈現給用戶,用戶可以進行多個item的選擇。

由于這三個控件是服務器端控件,需要在客戶端進行解析,下面有三個控件的服務器端、客戶端例子

服務器端

復制代碼 代碼如下:

<asp:RadioButtonList ID="RadioButtonList1" RepeatDirection="Horizontal" RepeatLayout="Flow"
            runat="server">
            <asp:ListItem Value="0">單選一</asp:ListItem>
            <asp:ListItem Value="1">單選二</asp:ListItem>
            <asp:ListItem Value="2">單選三</asp:ListItem>
        </asp:RadioButtonList>
        <br />
        <asp:CheckBoxList ID="CheckBoxList1" RepeatDirection="Horizontal" RepeatLayout="Flow"
            runat="server">
            <asp:ListItem Value="0">多選一</asp:ListItem>
            <asp:ListItem Value="1">多選二</asp:ListItem>
            <asp:ListItem Value="2">多選三</asp:ListItem>
        </asp:CheckBoxList>
        <br />
        <asp:DropDownList ID="DropDownList1" RepeatDirection="Horizontal" RepeatLayout="Flow"
            runat="server">
            <asp:ListItem Value="0">下拉選擇一</asp:ListItem>
            <asp:ListItem Value="1">下拉選擇二</asp:ListItem>
            <asp:ListItem Value="2">下拉選擇三</asp:ListItem>
        </asp:DropDownList>

經過瀏覽器解析后

復制代碼 代碼如下:

<span id="RadioButtonList1">
      <input id="RadioButtonList1_0" type="radio" name="RadioButtonList1" value="0" /><label for="RadioButtonList1_0">單選一</label>
      <input id="RadioButtonList1_1" type="radio" name="RadioButtonList1" value="1" /><label for="RadioButtonList1_1">單選二</label>
      <input id="RadioButtonList1_2" type="radio" name="RadioButtonList1" value="2" /><label for="RadioButtonList1_2">單選三</label>
   </span>
        <br />
   <span id="CheckBoxList1">
      <input id="CheckBoxList1_0" type="checkbox" name="CheckBoxList1$0" value="0" /><label for="CheckBoxList1_0">多選一</label>
      <input id="CheckBoxList1_1" type="checkbox" name="CheckBoxList1$1" value="1" /><label for="CheckBoxList1_1">多選二</label>
      <input id="CheckBoxList1_2" type="checkbox" name="CheckBoxList1$2" value="2" /><label for="CheckBoxList1_2">多選三</label>
   </span>
        <br />
   <select name="DropDownList1" id="DropDownList1" RepeatDirection="Horizontal" RepeatLayout="Flow">
    <option value="0">下拉選擇一</option>
    <option value="1">下拉選擇二</option>
    <option value="2">下拉選擇三</option>
   </select>

對于這三個控件的操作無非就是取值和賦值,下面通過Jquery和.cs兩種方式進行操作

Jquery對三種控件進行操作

 1、RadioButtonList

   1)取值

復制代碼 代碼如下:

 $("#RadioButtonList1").change(function () {
   //彈出選中項的val值
                alert($("input[name='RadioButtonList1']:checked").val());
  //彈出選中項的text值
                alert($("input[name='RadioButtonList1']:checked+label").text())
  }); 

   2)賦值

復制代碼 代碼如下:

//默認選中第二項
var rbts = document.getElementsByName("RadioButtonList1");
            for (var i = 0; i < rbts.length; i++) {
                if (rbts[i].value == "1")
                    rbts[i].checked = "true";
            }

2、DropDownList

   1)取值

復制代碼 代碼如下:

 $("#DropDownList1").change(function () {
//彈出選中項的Val值
                alert($("#DropDownList1").val());
//彈出選中項的text值
                alert($("#DropDownList1 option:selected").text());
            });

    2)賦值

復制代碼 代碼如下:

//默認選中第二項
var ddls = $("#DropDownList1 option");
                        for (var i = 0; i < ddl.length; i++) {
                            if (ddl[i].value == "1") {
                                ddl[i].selected = "true";
                            }
                        }

3、CheckBoxList

     1)取值 

復制代碼 代碼如下:

$("#CheckBoxList1 > input").click(function () {
               var arrval = [];
                var val = "";
              $("#CheckBoxList1 :checkbox:checked").each(function () {
             //將選中項的值放進數組arrval
                    arrval.push($(this).val())
                })
            //將數組中的val值以‘,'進行連接
                val = arrval.join(',');
              //彈出所有選擇的項以,連接
                                alert(val);
                var arrtext = [];
                var text = "";
                $("#CheckBoxList1 :checkbox:checked").each(function () {
              //將選中項的text值放進arrtext數組中
                    arrtext.push($(this).next().html());
              //將數組中的數據用,進行連接
                    text = arrtext.join(",");
                })
             //彈出選中項的Text值
               alert(text);
                });

2)賦值

復制代碼 代碼如下:

   var cbks = $("#CheckBoxList1 input[type='checkbox']");
            for (var i = 0; i < cbks.length; i++) {
                if (cbks[i].value== "1"||cbks[i].value=="2") {
                    cbks[i].checked = "true";
                }
            }

到此,關于“ASP.NET服務器端如何控件RadioButtonList,DropDownList,CheckBoxList的取值、賦值用法教程”的學習就結束了,希望能夠解決大家的疑惑。理論與實踐的搭配能更好的幫助大家學習,快去試試吧!若想繼續學習更多相關知識,請繼續關注億速云網站,小編會繼續努力為大家帶來更多實用的文章!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

浏阳市| 衡阳市| 安多县| 雷州市| 江永县| 澄迈县| 安西县| 天水市| 那坡县| 方山县| 图木舒克市| 九龙坡区| 海门市| 宁城县| 长乐市| 遵义县| 宁晋县| 东乡县| 咸阳市| 页游| 山阴县| 诸暨市| 珠海市| 桃江县| 清镇市| 武冈市| 京山县| 霍邱县| 平陆县| 和林格尔县| 唐河县| 嘉荫县| 九龙城区| 会泽县| 木兰县| 武川县| 普兰县| 莱州市| 洛川县| 河南省| 阳原县|