私のCheckBox
の無効なプロパティをtrueに設定しようとしています。しかし、私がポストバックを行うと、CheckBox
はまだ有効になっていますか?asp.netチェックボックスが無効になっていないのはなぜですか?
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#:disabled
などのCSSプロパティはjQueryを使って追加、またはそのことについてはどのような方法で追加
protected void Button1_Click(object sender, EventArgs e)
{
if (!CheckBoxList1.Items[0].Enabled)
{
Response.Write("it is disabled");
}
}
3つの別々の 'CheckBox'の代わりに' CheckBoxList'を使う理由はありますか?本当の 'CheckBox'を使うと、' Enabled'プロパティを使って 'false'に設定することができます – NoLifeKing