목록 페이지 확인란 전체 선택 효과

1698 단어 확인란
        $(function () {
            // 
            $("#cbkAll").live("click", function () {
                $(".id").attr("checked", $(this).is(':checked'));
            });

            // 
            $(".id").live("click", function () {
                var amount = $(".id:checked").length;
                var totalAmount = $(".id").length;
                if (amount != totalAmount) {
                    $("#cbkAll").attr("checked", false);
                }
                else {
                    $("#cbkAll").attr("checked", true);
                }
            });
        });

좋은 웹페이지 즐겨찾기