我有一个jQuery异常
“未处理的TypeError:非法调用”行“data:formData”,
当我尝试发送下一个请求时:
{{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]);
}
});