在 php 中使用 dropzonejs 拖放图像上传后重定向

redirection after drag and drop image upload using dropzonejs in php

在 php 中使用 dropzonejs 拖放图像上传后,是否可以重定向 到另一个页面?

绝对是!

<script type="text/javascript">
    $(function() {
        var myDropzone = new Dropzone("#dz"); // this will create instance of Dropzone on the #dz element
        myDropzone.on("addedfile", function(file) {
            location.href = 'http://redirect-here/';  // this will redirect you when the file is added to dropzone
        });
    });
</script>

对应HTML

<form id="dz" ....