재선

1628 단어
 <script>
 function chooseAll(obj){       // 
  if($(obj).prop("checked")){
   $("#table").find(":checkbox").prop("checked",true);
  }else{
   $("#table").find(":checkbox").prop("checked",false);
  }
 }
 function invertSelect(){      // 
  $("input[type='checkbox']").each(function(index,item){
   if($(item).attr("checked")){
    $(item).attr("checked",false);
   }else{
    $(item).attr("checked",true);
   }
  })
 } 
 function allSelect(){         // 
  $("input[type='checkbox']").each(function(index,item){
   $(item).attr("checked",true);
  });
 }
 function allDelete(){         // 
  var ids="";
  $("input[type='checkbox']").each(function(index,item){
   if($(item).attr("checked")){
    ids+=$(item).val()+",";
   }
  });
  if(ids==""){
   return ;
  }
  if(!confirm(" ?")){
   return ;
  }
  $.ajax({
   type:"POST",
   url:"${basePath}<c:url value='resourceRelation/allDelete.action'/>",
   data:{'ids':ids},
   success:function(data){
    if(data=='Y'){
     window.parent.openAlert(" !");
     self.location.href="${basePath}resourceRelation/already.action?mark=${mark}";
    }else if(data=='N'){
     window.parent.openAlert(" !");
     self.location.href="${basePath}resourceRelation/already.action?mark=${mark}";
    }
   },
   error:function(){
    window.parent.openAlert(" , !");
   }
  });
 }
</script>

좋은 웹페이지 즐겨찾기