<p> <label style="font-size:18px;font-weight: bold;" class="checkboxs"> <input type="checkbox" name="faci_in_checkbox[]" value="56" class=""> B超 </label> <span> <label style="margin-left:0px;" class="auth_rules"> <input type="checkbox" name="faci_in_checkbox[]" value="65" class="">腹部B超 </label> <label style="margin-left:0px;" class="auth_rules"><input type="checkbox" name="faci_in_checkbox[]" value="66">甲状腺B超</label> <label class="auth_rules"><input type="checkbox" name="faci_in_checkbox[]" value="76"> 的说法士大夫 </label> </span> </p>
$(".checkboxs").click(function (){ var is_check = $(this).find('input').get(0).checked; //判断是否选中 $(this).next().find('input').prop("checked",is_check); }) $(".auth_rules").click(function (){ $(this).parent().parent().children('label').find('input').prop('checked','checked') })