Ich bin neu hier kam ich das Problem Ich benutze Dropzone für Dateiupload auf Knopf klicken es gibt mir Länge ist undefined. Bitte hilf mir, mein Problem zu lösen. Wenn ich fertige Funktion entferne, funktioniert es nicht richtig, deshalb habe ich Dokument bereit gehalten Funktion. hier ist mein code unter html und ready funktion und ajax call funktion.Ich möchte herausfinden, die Länge der Dropzone
HTML
<form action="#" class="dropzone" id="dropzone">
<div class="fallback">
<input name="file" id="fileupload" type="file" multiple="multiple">
</div>
</form>
On Load Function`
$(function() {
$('#dropzone').dropzone();
});
AJAX Aufruf
var imagedata = new FormData();
var fileUpload = document.getElementById("dropzone").files.length;
// var countfiles = $('#dropzone').files;
// alert(countfiles);
for (var i = 0; i < fileUpload; i++) {
var filname = document.getElementById("dropzone").files[i];
imagedata.append("FileName", filname);
}