海天鹰 发表于 2020-5-22 11:16:05

FileReader.onload 不触发

本帖最后由 海天鹰 于 2020-5-22 11:17 编辑

var fileReader = new FileReader();
fileReader.onloadstart = function(e) { //触发
    console.log("onloadstart");
}
fileReader.onloadend = function(e) { //触发
    console.log("onloadend");
}

fileReader.οnlοad = function(e){ //不触发
    console.log("οnlοad");
}
fileReader.readAsArrayBuffer(file.files);

xuyuehang 发表于 2020-5-25 10:10:26

参考https://developer.mozilla.org/zh-CN/docs/Web/API/FileReader/onload
页: [1]
查看完整版本: FileReader.onload 不触发