简体   繁体   中英

Dropzone is not working, How can i solve this problem

I have a webform with masterpage. Dropzone is not working . I have tried everything but i can not solve.

HTML

<div class="block push-up-10">
<form action="upload.php" class="dropzone dropzone-mini dz-clickable"><div class="dz-default dz-message"><span>Drop files here to upload</span></div></form>
                    </div>

REF

<script type="text/javascript" src="js/plugins/dropzone/dropzone.min.js"></script>
<form action="upload.php" method="post" class="dropzone dropzone-mini dz clickable">
  <label class="dz-default dz-message">Drop files here to upload</label>
  <input type="file" name="file" />
</form>

You have to add input tag inside of a div.

And don't forget to add javascript

For jquery use $("div#myId").dropzone({ url: "/file/post" });

For vanilla JS use new Dropzone("div#myId", { url: "/file/post"});

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM