// 设置选中 function setCheckboxClick(obj) { if(obj == null) { $.('警告', "请选择要设置选中的项!",'warning'); } // alert(); var authorityId = ; $.ajax({ type: 'post', url: '', data: {"authorityId" : authorityId}, dataType: 'json', success:function(data) { (data); var d = $.parseJSON(data); //$(":checkbox[name=authorityId]").prop("checked",false); // = true; $(":checkbox[name=authorityId]").each(function(){ var currentAuthorityId = $(this).val(); for(var i = 0; i < ; i++) { if(currentAuthorityId == d[i].authorityId) { // $(this).prop("checked",true); if ($(this).prop("checked") == true) { $(this).prop("checked", false); } else { $(this).prop("checked",true); } } } }); }, error:function() { } });
转载于:/rgcdlb/p/