--找到选中的值
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();
});
}