페이지 코드 코드 복사 코드는 다음과 같습니다. 모두 < input type="checkbox" name="checkbox" value="day" />dayempty < input type="checkbox" name="checkbox" value="fly" />flycome < input type="checkbox" name="checkbox" value="五" />五piece < input type="checkbox" name="checkbox" value="Word" />WordThis < input type="checkbox" name="checkbox" value="Both" />둘 다No < input type="checkbox" name="checkbox" value="Calculation" />계산Things js의 코드 코드 복사 코드는 다음과 같습니다. /*js 부분* Bind 배치 선택/선택 취소* 예시*/ $(function () { $("#checkall").click(function () { var stu = $(this).attr("checked"); checkAll(stu); }) $("input[name='checkbox']").click(function () { uncheckAll(); }) }) function checkAll(status) { $("input[name='checkbox']").each(function () { $(this).attr("checked"); $ (this).attr("checked", status); }) } function uncheckAll() { alert($("input[name='checkbox'] : selected").length); if ($("input[name='checkbox']:checked").length == $("input[name='checkbox']").length) { $("#checkall").attr("checked",true); } else { $("#checkall").attr("checked", false); > } }