您现在的位置是:首页 > 电脑技术查询 > web开发

dropzone.js 手动交付

编辑:chaxungu时间:2022-10-10 23:23:17分类:web开发

dropzone.js 手动提交

原文链接:Upload all files with a button

This tutorial shows how to let the user build a queue and then upload all files with a single button click.

First off the HTML:

<button id="submit-all">Submit all files</button><form action="/target" class="dropzone" id="my-dropzone"></form>

and the JS:

Dropzone.options.myDropzone = { // Prevents Dropzone from uploading dropped files immediately autoProcessQueue: false, init: function() { var submitButton = document.querySelector("#submit-all") myDropzone = this; // closure submitButton.addEventListener("click", function() { myDropzone.processQueue(); // Tell Dropzone to process all queued files. }); // You might want to show the submit button only when // files are dropped here: this.on("addedfile", function() { // Show submit button here and/or inform user to click it. }); }};

That's it!