How to disable clickable the form with Dropzone.js?

后端 未结 10 967
孤城傲影
孤城傲影 2020-12-29 08:39

I\'m using Dropzone.js to upload files to the server. I setting up my Dropzone maxFiles parameter to 10 and I was tried this:

$(\'.         


        
10条回答
  •  失恋的感觉
    2020-12-29 08:47

    Why do not you just use CSS to disable the click event. When max files is reached, Dropzone will automatically add a class of dz-max-files-reached.

    Use css to disable click on dropzone:

    .dz-max-files-reached {
      pointer-events: none;
      cursor: default;
    }
    

提交回复
热议问题