私の Asp.net チェックボックス
<asp:CheckBox ID="All" runat="server" Checked="true" Text="ALL" ForeColor="Black" /><br />
<asp:CheckBox ID="otherCheckBox2" runat="server" Checked="false" Text="Accepted" ForeColor="Black" CssClass="chkdisplay" /><br />
<asp:CheckBox ID="otherCheckBox3" runat="server" Checked="false" Text="Contacted" ForeColor="Black" CssClass="chkdisplay" /><br />
<asp:CheckBox ID="otherCheckBox4" runat="server" Checked="false" Text="Pending" ForeColor="Black" CssClass="chkdisplay" /><br />
<asp:CheckBox ID="otherCheckBox5" runat="server" Checked="false" Text="Pre-Authorized" ForeColor="Black" CssClass="chkdisplay" /><br />
<asp:CheckBox ID="otherCheckBox6" runat="server" Checked="false" Text="Show Deleted" ForeColor="Black" CssClass="chkdisplay" /><br />
<asp:CheckBox ID="otherCheckBox7" runat="server" Checked="false" Text="Treated" ForeColor="Black" CssClass="chkdisplay" />
試したスクリプト
$(document).ready(function () {
$('[id^="otherCheckBox"]').each(function () {
if ($(this.checked)) {
$('#<%= All.ClientID %>').attr('checked', false);
}
});
});
asp チェックボックスを繰り返したいのですが、2 t0 7 のチェックボックスがチェックされている場合は、id="All" でチェックを外します。
すべてのスタックフローの専門家に、長い間回答を待っている回答を提案してください。前もって感謝します