Jquery TreeView CheckBox 全选

$(function() {

    $(":checkbox").click(function() {

        var v = this.checked;

        $(this).parents("table").next("div").find(":checkbox").each(function() {

            this.checked = v;

        });

    });

});

你可能感兴趣的:(checkbox)