//获取checkBox的状态 //方法1 $(".对象").prop("checked"); //方法2 $(".对象").attr("checked"); //给checkBox赋值 //方法1 $(".对象").prop("checked",true); //方法2 $(".对象").attr("checked",true);
//方法1 $(".对象").prop("checked"); //方法2 $(".对象").attr("checked");
//给checkBox赋值 //方法1 $(".对象").prop("checked",true); //方法2 $(".对象").attr("checked",true);