Dropzonejs - 在单个图像的previewTemplate中操作DOM

时间:2014-08-28 08:07:29

标签: dropzone.js

我希望能够在单个图像的预览模板中选择单个元素,例如:

//I'm passing the file to the function
MyDropzone.on('complete', function(file){

       // select e.g. the .dz-success-mark for this file and make it visible
         myselectedelement.css('display', 'block');
}

我正在通过file,但如何在.dz-success-mark的模板中获取file

1 个答案:

答案 0 :(得分:1)

您可以通过这种方式访问​​DOM节点(jquery示例)

MyDropzone.on('complete', function(file){
         $(file.previewElement).css('display', 'block');
}