gpt4 book ai didi

jquery - 检查 Dropzone 是否已附加

转载 作者:行者123 更新时间:2023-12-03 23:02:22 25 4
gpt4 key购买 nike

页面上几乎没有拖放区,并且新项目是通过 ajax 加载的,因此我需要检查拖放区是否已附加到该项目

    Dropzone.autoDiscover = false;


function initDropzones()
{

$('.dropzones').each(function () {

// how to check dropzone exists on item?
// or how to destroy already existed dropzone (so reinitialize after)

$(this).dropzone({
url: ...
})
});
}

someAjaxAdd() {
// add new elements and with new one dropzone
initDropzones();
}

非常感谢

最佳答案

您必须检查 dropzone 属性,如果存在,您可以销毁它:

function initDropzones() {
$('.dropzone').each(function () {

let dropzoneControl = $(this)[0].dropzone;
if (dropzoneControl) {
dropzoneControl.destroy();
}
});
}

关于jquery - 检查 Dropzone 是否已附加,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40359788/

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