jquery复选框全选功能

        $(function () {
            $('input[name="Checkbox1"]').click(function () {
                if ($(this).is(':checked')) {
                    $('input[name="chk"]').each(function () {
                        //此处如果用attr,会出现第三次失效的情况
                        $(this).prop("checked", true);
                    });
                } else {
                    $('input[name="chk"]').each(function () {
                        $(this).removeAttr("checked", false);
                    });
                }
            });
        })

 

posted @ 2019-10-12 12:19  砂糖一椰子  阅读(225)  评论(0编辑  收藏  举报