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
アップロードする前に画像のファイルサイズが必要ですが、アイデアはありますか?