Как добавить пользовательский фон, если происходит действие? - PullRequest
0 голосов
/ 19 октября 2019
if (/^(image || pdf)/.test(files[0].type)) {
  var reader = new FileReader();
  reader.readAsDataURL(files[0]);
  reader.onloadend = function() {
    uploadFile.closest(".imgUp").find('.imagePreview').css("background-image", "url(" + this.result + ")");
  }
}

// what should I add here for adding a custom image?
...