ajax发送文件的请求

时间:2015-07-04 14:56:21

标签: jquery ajax

我有一个jQuery异常

  

“未处理的TypeError:非法调用”行“data:formData”,

当我尝试发送下一个请求时:

{{1}}

1 个答案:

答案 0 :(得分:0)

$("#loader").on("change", function () {

        if (this.files && this.files[0]) {

            var reader = new FileReader();
            reader.onload = function (e) {

                $("#picture").attr("src", e.target.result);
            }
            reader.readAsDataURL(this.files[0]);
        }
    });