全选checkbox

 function selectAll() {
            if ($("#selectAllBox").attr("checked") != true) {
                $(".cbox").each(function (i) {
                    $(this).removeAttr("checked");
                });
            } else {
                $(".cbox").each(function (i) {
                    $(this).attr("checked", "checked");
                });
            }


        }

你可能感兴趣的:(function)