Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
假设我有一个表单,有几个输入字段和一个拖放上传区域 (dropzone.js)。我的尝试是,代替将文件拖放到拖放区域后立即开始上传,我想在那里显示文件,当我单击表单的提交按钮时,它将与提交一起上传表格信息。
可以拖放吗?
提前致谢。
使用autoProcessQueue:false和
autoProcessQueue:false
$('#upload-button').click(function(){ myDropzone.processQueue(); });
这会奏效。