文件上传图片jquery

效果图如下


image.png

可以copy然后直接用没问题的
html:

    <form id="form" method="post" enctype="multipart/form-data">
            <div class="chooseCon">
                <div class="title">选择文件</div>
                <input type="file" id="input" multiple="multiple">
            </div>

            <div class="imgContent" id="imgContent">
              <div id="imgContent-header">文件内容展示</div>
            </div>
            <img src="" alt="" id="portrait">
        </form>
    //点击上传到服务器的按钮
        <button id="button">save</button>

css:

    .imgCon-item,.imgCon-item>.img-modal{
            width:200px;
            height:150px;
        }
        .imgCon-item>img{
            width: 100%;
            height: 100%;
        }
        .imgCon-item{
            position: relative;
            display: inline-block;
            margin: 10px;
            margin-left: 0px;
            padding: 10px;
            box-sizing: border-box;
            background: #f2f2f2;
            text-align: center;
            padding-bottom: 15px;
            -webkit-transition: .5s all;
            -moz-transition: .5s all;
            -ms-transition: .5s all;
            -o-transition: .5s all;
            transition: .5s all;
            vertical-align: top;
        }
        .imgCon-item:hover{
            padding: 0px;
            padding-bottom: 5px;
        }
        .imgCon-item>.img-modal{
            opacity: 0;
            position: absolute;
            top:0;
            left:0;
            background: rgba(28, 20, 20, 0.6);
            text-align: center;
            color:#fff;
            -webkit-transition: .5s all;
            -moz-transition: .5s all;
            -ms-transition: .5s all;
            -o-transition: .5s all;
            transition: .5s all;
            padding-top: 20px;
            box-sizing: border-box;
        }
        .imgCon-item>.img-modal:hover{
            cursor: pointer;
            opacity: 1;
        }
        .imgCon-item>.img-modal>p{
            width:80%;
            overflow: hidden;
            margin: 10px auto;
        }
        .imgCon-item>.img-modal>.closeBar{
            position: absolute;
            right:5px;
            top:5px;
            font-size: 1.2rem;
            font-weight: 900;
        }
        .imgCon-item>.progressBar{
            height: 5px;
            background: #177cb0;
            -webkit-border-radius: 3px;
            -moz-border-radius: 3px;
            border-radius: 3px;
            margin-top: -4px;
            -webkit-transition: .5s all;
            -moz-transition: .5s all;
            -ms-transition: .5s all;
            -o-transition: .5s all;
            transition: .5s all;
        }
        .chooseCon{
            display: inline-block;
            position: relative;
            height: 40px;
            line-height: 40px;
            width: 100px;
            text-align: center;
            border: 1px solid #ccc;
            background: #f2f2f2;
        }
        .chooseCon>input[type='file']{
            opacity: 0;
            width: 100px;
            height: 40px;
            position: absolute;
            top: 0;
            left: 0;
        }
        .chooseCon>input[type='file']:hover{
            cursor: pointer;
        }
        #imgContent{
            border: 1px solid #ccc;
            margin-top: 10px;
            min-height: 100px;
        }
        #imgContent-header{
            text-align: center;
            padding: 10px;
            border-bottom: 1px solid #ccc;
            background: #f2f2f2;
        }

js:

    var formData = new FormData();
        var btn = $('#button');
        var input_ = $("#input");
        var fileNum = 0;
        var fileSize = 0;
        var url_ = '';
        // 保存触发
        btn.click (function () {
            $.ajax({
                url: url_,
                type: "post",
                data: formData,
                dataType: "json",
                cache: false,
                contentType: false,
                processData: false,
                xhr:function (res) {
                 myXhr = $.ajaxSettings.xhr();
                if (myXhr.upload) { //检查upload属性是否存在
                    //绑定progress事件的回调函数
                    myXhr.upload.addEventListener('progress', function (e) {
                        var percent = (e.loaded / e.total * 100).toFixed(2);
                        itemList.eq(i).find(".progress").width(percent + "%");
                    }, false);
                }
                return myXhr; //xhr对象返回给jQuery使用
                },
                success:function (res) {
                
                },
                error:function (res) {

                }
            })

        });
        // 选择文件点确定触发
        input_.bind('change',function (e) {
            if(window.FileReader) {
                var lengthF = e.target.files.length;
                for(var i = 0;i<lengthF;i++){
                    var file = e.target.files[i];
                    imgDraw(file);
                }

            }else{
                console.log('您的浏览器不支持图片上传');
            }
        });

        // 描绘图片
        function imgDraw(file) {
            var name = file.name;
            var size = file.size;
            var statue = '未上传';
            var progressW = 0;
            var fr = new FileReader();
            // 读取完成
            fr.onloadend = function(e) {
                console.log('ppp');
                statue = '上传成功';
                var key = "file"+file.lastModified;
                formData.append(key, file);
                subtotal(1,size);
                // 添加的文件item
                var imgitemCon =' <div class="imgCon-item" id="file'+file.lastModified+'">'+
                    ' <img src="'+e.target.result+'" alt=""> ' +
                    '                    <div class="img-modal"> ' +
                    '                        <b class="closeBar" onclick="deleteFn(this,'+file.lastModified+')">&times;</b> ' +
                    '                        <p class="name">'+name+'</p> ' +
                    '                        <p class="size">'+size+'</p> ' +
                    '                        <p class="status">'+statue+'</p> ' +
                    '                    </div> ' +
                    '                   <p class="progressBar" style="width:'+progressW+'%"></p> ' +
                    '</div>';
               $('#imgContent').append(imgitemCon);

            };
            fr.onload = function(e) {

            };
            fr.onerror = function(e) {
                statue = '上传失败';
            };
            fr.onprogress = function(e) {
                progressW = e.loaded/size*100;
            };
            fr.readAsDataURL(file);
        }
        // 删除文件
        function deleteFn(e,index){
            var key = "file"+index;
            if(confirm('确定删除吗?')){
                formData.delete(key);
                $('#'+key).remove();
                var size = formData.get(key).size;
                subtotal(-1,size);
            }
        }
        // 计算文件个数和总大小
        function subtotal(event,size) {
            if(event == -1){
                fileNum --;
                fileSize-= size;
            }else{
                fileNum ++;
                fileSize+= size;
            }
            $('#imgContent-header').html('共'+fileNum+'个文件,'+Math.round(fileSize/1024)+'MB');
        }

关于上传的ajax方法参考有:

 var xhr = jQuery.ajaxSettings.xhr();  
                xhr.upload.onload = function (){  
                    alert('finish downloading')  
                }  
  
  
                xhr.upload.onprogress = function (ev) {  
                    if(ev.lengthComputable) {  
                        var percent = 100 * ev.loaded/ev.total;  
                        console.log(percent,ev)  
                    }  
                }  
                return xhr;  
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 205,386评论 6 479
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 87,939评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 151,851评论 0 341
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,953评论 1 278
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,971评论 5 369
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,784评论 1 283
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,126评论 3 399
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,765评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 43,148评论 1 300
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,744评论 2 323
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,858评论 1 333
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,479评论 4 322
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 39,080评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,053评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,278评论 1 260
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 45,245评论 2 352
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,590评论 2 343

推荐阅读更多精彩内容