<!doctype html>
<html lang="zh">
<head>
  <meta charset="utf-8">
  <title>多文件上传</title>
  <script src="jquery.js"></script>
  <script>
   $(function(){
         $("#btn").click(function(){
               var formData = new FormData();
               for(var i=0; i<$('#file')[0].files.length;i++){
                   formData.append('file[]', $('#file')[0].files[i]);
               }
               $.ajax({
                  url: "test.php",
                  type: "POST",
                  processData: false,
                  contentType: false,
                  data: formData,
                  success: function(d){

                  }
               });

          });

   })

  </script>
</head>
<body>
    <form>    
     <input  type="file" multiple  > 
     <input  type="button" />
    </form>
</body>
 

  

直接上代码: 

html代码

 


 

相关文章:

  • 2021-11-20
  • 2021-11-20
  • 2021-11-13
  • 2021-10-15
  • 2021-11-20
  • 2021-12-15
  • 2021-11-20
猜你喜欢
  • 2021-08-01
  • 2021-11-30
  • 2021-11-20
  • 2021-10-09
  • 2021-12-02
  • 2021-11-20
  • 2021-11-30
相关资源
相似解决方案