我希望能够在单个图像的预览模板中选择单个元素,例如:
//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
?
答案 0 :(得分:1)
您可以通过这种方式访问DOM节点(jquery示例)
MyDropzone.on('complete', function(file){
$(file.previewElement).css('display', 'block');
}