嗨我有dropzone Js上传工作,但我需要添加i边框到我点击dropzone js的Thumb预览图片。
我该怎么做?
我有这段代码:
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'
});
});
答案 0 :(得分:0)
只需使用:
.dz-image { border: 1px solid #000 }