注:这两个函数结合其他主要实现异步的默认checkbox选中和其他选中,关键点在于,从php页面穿过来已经选中的值;function assign(id,go_ids){ if(id > 0){ //var content = jQuery(‘#assign_‘+id).html(); if(go_ids) { jQuery.each(go_ids, function(key,val){ jQuery(‘#goods_‘+val).attr(‘checked‘, true); }); } jQuery("#assign_id").val(id); jQuery(‘#myModal‘).modal(); }} function saveAssign(){ var cs_id = jQuery("#assign_id").val(); var ids = new Array(); var i = 0; jQuery("input[name=‘goods‘]:checked").each(function() { ids[i] = jQuery(this).val(); i++; }); if(cs_id && ids){ var data = { ‘go_id‘ : ids, ‘cs_id‘ : cs_id }; jQuery.ajax({ ‘type‘ : ‘post‘, ‘url‘ : ‘‘, ‘data‘ : data, ‘dataType‘: ‘json‘, success : function(msg){ if((msg == 1)){ window.location.reload(); }else{ } } }) }}
时间: 2024-11-09 18:45:29