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 GridView 中有一个复选框列表。在服务器端,我将选中的属性设置为 true 并禁用其中一些。现在,当我使用以下选择器时,它不会返回已禁用但已检查的 chekcbox。
var $checkedCheckboxList = $('form input:checkbox[ID*="_chkItems"]:checked:enabled');
需要在此选择器中添加什么才能选中也可以禁用的复选框?
只需:enabled从选择器中删除。它过滤掉:disabled元素。
:enabled
:disabled