“Dropzone -Download -Schaltfläche Hinzufügen hinzufügen” Code-Antworten

Dropzone -Download -Schaltfläche hinzufügen

myDropzone.on("success", function(file) {
    var a = document.createElement('a');
    a.setAttribute('href',"/uploads/" + file.fullname);
    a.innerHTML = "<br>download";
    file.previewTemplate.appendChild(a);
});
Matteoweb

Dropzone -Download -Schaltfläche Hinzufügen hinzufügen

    //Prepare the drop zone area
var myNewdDropzone = new Dropzone("#idOfForm",  {
    url: "my-ajax.php",
    method: "POST",
    addRemoveLinks: false,
    clickable: true,
    previewTemplate: document.querySelector('#preview-template').innerHTML,
    init : function() {
        this.on("addedfile", function(file) { new_file_added(file); });
        this.on("thumbnail", function(file,fileurl) { new_thumbnail_added(file); });
        this.on("removedfile", function(file) { new_file_removed(file); });
        this.on("totaluploadprogress", function(progress) { display_progress(progress); });
        this.on("queuecomplete", function() { all_files_uploaded(); });
        //this.on("processing", function(file) { new_file_processed(file); });
    }
});
Matteoweb

Ähnliche Antworten wie “Dropzone -Download -Schaltfläche Hinzufügen hinzufügen”

Fragen ähnlich wie “Dropzone -Download -Schaltfläche Hinzufügen hinzufügen”

Weitere verwandte Antworten zu “Dropzone -Download -Schaltfläche Hinzufügen hinzufügen” auf JavaScript

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen