在php中使用dropzonejs拖放图片上传后,是否可以重定向到另一个页面?
答案 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" ....