我有下一个适用于 chrome 和 firefox 的代码,但是 IE 发送“未定义”消息。
<input type="file" name="image" onchange="inputFileChange(this);"/>
function inputFileChange(el) {
console.log($(el).context.files);
}
这是 Firefox 和 chrome 中 console.log 的结果。
FileList
0: File
lastModifiedDate: Thu Dec 20 2012 19:01:23 GMT-0600 (Hora estándar central (México))
name: "izq02_a.jpg"
size: 69767
type: "image/jpeg"
...这是 IE 中的结果
REGISTER: undefined
上传前我需要图像的文件大小,有什么想法吗?