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

时间:2015-10-09 04:41:47

标签: php dropzone.js

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

1 个答案:

答案 0 :(得分:1)

绝对是!

<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" ....
相关问题