为什么没有禁用asp.net复选框?

本文关键字:net 复选框 asp 为什么 | 更新日期: 2023-09-27 18:18:43

我试图将我的CheckBox的禁用属性设置为true。但是,当我执行回发时,CheckBox仍然启用?

HTML:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<script src="Scripts/jquery-1.4.1.min.js" type="text/javascript"></script>
<head runat="server">
    <title></title>
    <script>
        $(document).ready(
            function () {
                $("#CheckBoxList1_0").attr('disabled',true);
            }
    );
    </script>
</head>
<body>
    <form id="form1" runat="server">
    <div>
        <asp:CheckBoxList ID="CheckBoxList1" runat="server">
            <asp:ListItem>een</asp:ListItem>
            <asp:ListItem>twee</asp:ListItem>
            <asp:ListItem>drie</asp:ListItem>
        </asp:CheckBoxList>
    </div>
    <asp:Button ID="Button1" runat="server" Text="Button" OnClick="Button1_Click" />
    </form>
</body>
</html>
c#

:

 protected void Button1_Click(object sender, EventArgs e)
        {
            if (!CheckBoxList1.Items[0].Enabled)
            {
                Response.Write("it is disabled");
            }
        }

为什么没有禁用asp.net复选框?

CSS属性,如disabled添加与jQuery,或以任何方式添加的事,将不会发布到服务器,当你做回发。

如果您确实需要跟踪哪些复选框被禁用,一种方法是将这些元素的id存储到一个隐藏的输入中,将其值发送到服务器。

像这样的东西应该可以工作

<input type="hidden" runat="server" id="yourHiddenInput" />
$("form").submit(function(){
    var allIds = [];
    $("input[type='checkbox']:disabled").each(function() {
       allIds.push($(this).attr("id"));
    });
    $("#yourHiddenInput").val(allIds.join());
    //form is about to post.  When it does, 
    //you'll be able to read the ids via yourHiddenInput.Value
});

当您使用javascript更改复选框时,更改仅在客户端上,我相信复选框的视图状态信息不会更新,因此当回发发生时,只要页面知道复选框仍未选中