input checkbox 选择多文件处理

<script type="text/javascript">
$('#chooseCheck').click(function(event) {
    if($(this).attr('checked')=="checked"){
      $('table input[type=checkbox]').attr('checked','checked');
      
    }else{
      $('table input[type=checkbox]').removeAttr('checked');
    }
  
});
$('#delco').click(function(event) {
  var convalue = "";
  $("input[type=checkbox]").each(function(){
    if($(this).attr('checked')=="checked"){
       convalue += $(this).val();
       convalue +=",";
    }
   

  });
  if(!convalue){
    alert('您没有选择数据');
    return false;
  }
       //alert(convalue)
  $.ajax({
    url: "{:U('ajax_del_thumb','isadmin=1')}",
    type: 'post',
    dataType: 'html',
    data: {convalue: convalue},
    success:function (d){
      if(d){
       location.reload() 
      }

    }
  })

  


  });



</script>


你可能感兴趣的:(input checkbox 选择多文件处理)