/// <summary>

        /// 点击行选中或者取消CheckBox

        /// </summary>

        function Set_CheckBoxCheckTr() {

            $("table.Qub_tb_List tr").slice(1).each(function () {//slice(1)表示排除第一行

                var p = this;

                $(this).children().slice(2).click(function () {//slice(2)表示第二行

                    $($(p).children()[1]).children().each(function () {//$(p).children()[1]表示第二列

                        if (this.type == "checkbox") {

                            if (!this.checked) this.checked = true;

                            else this.checked = false;

                        }

                    });

                });

            });

        }

 如下图所示:


jQuery实现点击行(tr)选中某列中CheckBox_复选框转存失败重新上传取消