1 2 3 4 5 6 7 8 9 10 11 | $(".Chk_Choice").click(function () { var parentChildren = $(this).parent().parent().parent().children(); var parentAllChecked = false; var isChecked = $(this).is(":checked"); var checkboxId = $(this).attr("id"); $.each(parentChildren.find("input[type=checkbox]"), function (index, item) { if (checkboxId != $(item).attr("id")) { $(item).attr("disabled", isChecked); } }); }); | cs |
'js > jQuery' 카테고리의 다른 글
[jquery mobile] ListView scroll load more (0) | 2017.07.03 |
---|---|
[jquery mobile] swipe event (0) | 2017.07.03 |
[jquery] 해당 클래스를 제외한 요소 선택 (0) | 2017.06.08 |
[jquery][plugin] input mask (0) | 2017.06.01 |
[javascript] substring 문자열 자르기 (0) | 2017.05.31 |