我正在使用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
。
我哪里错了?