gpt4 book ai didi

javascript - 单击按钮后如何在 Dropzone.js 中调用 .removeAllFiles() 函数

转载 作者:可可西里 更新时间:2023-11-01 01:35:10 25 4
gpt4 key购买 nike

我正在使用 http://www.dropzonejs.com/ (dropzone.js) 库。我已经将我的表单元素之一初始化为,

   var drop = $("#upload").dropzone({
uploadMultiple: "true",
addRemoveLinks: "true",
thumbnailWidth: "250",
thumbnailHeight: "250",
maxFilesize: "10",
headers: {
"title": titles,
"location": locations,
"tag": tags
}
});

现在当用户点击 <button id="close"></button>按钮,我想使用 drop.removeAllFiles(true) 清空整个列表功能,如 Dropzone.js 官网所建议。

所以,我尝试使用

 $("#close").click(function(){
drop.removeAllFiles(true);
});

但它不起作用,在 console.log我收到错误 removeAllFiles() is not declared for drop .

我哪里错了?

最佳答案

这对我有用。

Dropzone.forElement("#YourDropBoxId").removeAllFiles(true);

引用:https://github.com/enyo/dropzone/issues/180

关于javascript - 单击按钮后如何在 Dropzone.js 中调用 .removeAllFiles() 函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18460695/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com