判断checkBox是否选中,layul判断是否选中,layui判断checkBox状态
//获取checkBox的状态原文链接:https://www.f2er.com/jquery/422988.html//方法1
$(".对象").prop("checked");
//方法2
$(".对象").attr("checked");//给checkBox赋值
//方法1
$(".对象").prop("checked",true);
//方法2
$(".对象").attr("checked",true);