gpt4 book ai didi

javascript - 如何捕获 dropzonejs 插件的事件

转载 作者:行者123 更新时间:2023-11-28 00:54:57 25 4
gpt4 key购买 nike

我使用插件dropzonejs.com 。现在我在html文档中编写这段代码

<form action="<?php print $this->link('task', 'upload'); ?>" id="pinupload" class="dropzone" style="width:450px;">
</form>

而且它工作得很好。但我需要捕获 dropzone 的事件:文件上传时、开始上传时进行确认。

我写了这段代码:

Dropzone.options.myDropzone = {
init: function() {
this.on("addedfile", function(file) {

// Capture the Dropzone instance as closure.
var _this = this;

// Listen to the click event
removeButton.addEventListener("click", function(e) {
// Make sure the button click doesn't submit the form:
e.preventDefault();
e.stopPropagation();

// Remove the file preview.
_this.removeFile(file);
// If you want to the delete the file on the server as well,
// you can do the AJAX request here.
});
});
}
};

但是使用这段代码我无法捕获事件。为什么?

最佳答案

抱歉,代码正在运行,只是我不专心。表单 ID 应为“myDropzone”。

关于javascript - 如何捕获 dropzonejs 插件的事件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26332642/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com