FilesList を読み取り、画像を IMG html オブジェクトに表示する Jquery 関数を取得しました。
function load_images(files) {
for (var i = 0; i < files.length; i++) {
// Validate the image type
if(validate_file(files[i])) {
var reader = new FileReader();
reader.onload = function(e) {
$(".upload_thumbnails").append(render_thumb(e.target.result, i)); // Return a string with the img object
};
}
reader.readAsDataURL(f);
}
}
しかし、私の画像はfileListの順番で追加されていません。fileList (var ファイル) は、複数入力ファイルの html オブジェクトによって実装されます。
何か考えはありますか?