码迷,mamicode.com
首页 > Web开发 > 详细

界面上传文件js包【AjaxUpload.js】

时间:2016-05-16 21:35:36      阅读:167      评论:0      收藏:0      [点我收藏+]

标签:

function uploadFile() {
    new AjaxUpload($("#importFile"), {
        action: url,
        type: "POST",
        data: {"userId": userId},
        autoSubmit: true,
        responseType: "json",
        name: ‘file‘,
        onSubmit: function (file, ext) {
            if (!(ext && /^(rar|zip|pdf|pdfx|txt|csv|xls|xlsx|doc|docx|RAR|ZIP|PDF|PDFX|TXT|CSV|XLS|XLSX|DOC|DOCX)$/.test(ext))) {
                pNotifyAutoCloseCenter("fail", "您上传的文档格式不对,请重新选择!", "error");
                return false;
            }
            console.log("onsubmit");
        },
        onComplete: function (file, response) {
            pNotifyAutoCloseCenter("info", "数据上传" + response.status + "!", "info");
            console.log("upload file complete, savePath: " + response.savePath);
        }
    });
}

 

界面上传文件js包【AjaxUpload.js】

标签:

原文地址:http://www.cnblogs.com/onetwo/p/5499259.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!