Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何将asp.net checkboxlist控件中的一个复选框设置为未选中,其中所选复选框的索引是我使用jquery。
如果我理解您,您应该能够执行以下操作:
$('input:checkbox').eq(i).removeAttr('checked');
要设置它,您将使用:
$('input:checkbox').eq(i).attr('checked','checked');
请注意,初始选择器将获取页面上的所有复选框。如果您需要将其限制为页面上复选框的子集,请调整初始选择器(基于容器或复选框的命名方案)以仅处理有问题的复选框。我还假设您对相关复选框使用从零开始的索引。