if(dataBack.remind){ $("#isremind").prop("checked",true); }else{ $("#isremind").removeAttr("checked"); }
添加的时候用prop,取消用removeAttr。
问题解决了。