上传文件缩略图

function packFile(){
            $('#bigImgGroup').removeClass('imageGroup')
            $('#exampleFormControlFile1').change(function(){
                $('#bigImgGroup').addClass('imageGroup')
                if($(this).get(0).files.length == 0){
                    $('#bigImgGroup').removeClass('imageGroup');
                }
                var newGroup = '
' $('#imageGroup').replaceWith(newGroup); $($(this).get(0).files).each(function(){ var file = $(this)[0] console.log(file) var reader = new FileReader(); reader.readAsDataURL(file); reader.onload=function(e){ var img = e.target.result var newImg ="
" $('#imageGroup').append(newImg) } }) }) }

你可能感兴趣的:(上传文件缩略图)