1 $(‘input[name="checkbox"]‘).click(function() { 2 if ($(this).is(‘:checked‘)) { 3 $(‘input[name="checkname"]‘).each(function() { 4 $(this).prop("checked", true); 5 }); 6 } else { 7 $(‘input[name="checkname"]‘).each(function() { 8 $(this).prop("checked", false); 9 }); 10 } 11 })