我只想禁用选中且具有特定类的复选框。有很多非常相似的问题,但我找不到任何能够让它工作的东西。
http://jsfiddle.net/silvajeff/snfDM/
在下面的示例中,仅应禁用第二项:
HTML:
<input type="checkbox" class='boundParent' />
<input type="checkbox" class='boundParent' checked/>
<input type="checkbox" class="boundChild" />
<input type="checkbox" class="boundChild" />
Javascript:
$('[input:checked][class*="boundParent"]').prop("disabled", true);