【发布时间】:2016-04-15 18:20:48
【问题描述】:
嗨,我有 dropzone Js Upload 刚刚工作,但我需要为我单击 dropzone js 的 Thumb Preview 的图片添加边框。
我该怎么做?
我有这个代码:
defaultButton.addEventListener("click", function(e) {
// Make sure the button click doesn't submit the form:
e.preventDefault();
e.stopPropagation();
// Remove the file preview.
//_this.removeFile(file);
$.ajax({
type: 'POST',
url: "{!! route('setDefaultPhoto' ) !!}" ,
data: { id : file.serverid },
dataType: 'JSON'
});
});
【问题讨论】:
-
使用 css img:focus
-
那个不错的方法,但我只是想通了。谢谢
标签: dropzone.js