灰太狼 2017-10-20 18:05:56 1961次浏览 0条回复 1 1 0
      $("#users-uploadfile").change(function(e){
         var myfile = e.target.files||e.dataTransfer.files;
          console.log(window.URL.createObjectURL(myfile[0]));
          $("#viewimg").attr('src',window.URL.createObjectURL(myfile[0]));
      });
      
          $("#users-uploadfile").change(function(e){
       var myfile = e.target.files||e.dataTransfer.files;
       console.log(myfile.length);
         var html ='';
       for(i=0;i<myfile.length;i++){
          console.log(window.URL.createObjectURL(myfile[i]));
          html+= '<img id="viewimg1" src="'+window.URL.createObjectURL(myfile[i])+'" style="width: 100px;height: 100px;"/>';
          // $("#viewimg0").attr('src',window.URL.createObjectURL(myfile[i]));
       }
       $("#imgView").html(html);
           });
觉得很赞
    没有找到数据。
您需要登录后才可以回复。登录 | 立即注册