操作数据中的chekcbox

--找到选中的值

function GetLinkId() {
            $(".ckbId").each(function(i) {

                if ($(this).attr("checked")) {
                    alert($(this).val());
                }
            });
  

        }

---全不选

function UnSelected (){

           $(".ck_course").each(function(i) {
               $(this).attr("checked", false);
                // alert(i);
                $(".ck_course").select();
                       });

}

-------长沙程序员技术交流QQ群:428755207-------
原文地址:https://www.cnblogs.com/qq4004229/p/2008343.html