我正在尝试在 Dropzone.js 中编写删除函数。为了做到这一点,我需要文件的 id 上传方式。
我试图获得一个对象的属性,但没有成功。现在我正在尝试使用 jQuery 来获取具有它的跨度的值或文本内容。
这是结构的屏幕截图。我正在尝试的 jQuery 代码是:
var loooot = $(".dz-filename").parents('span').text();
更具体地说,我正在尝试获取数字 1_1477778745352 (这是一个时间戳)。
Dropzone代码如下:
<script>
var listing_id = "1";
// these are the setting for the image upload
Dropzone.options.pud = {
acceptedFiles: ".jpeg,.jpg,.png,.gif",
uploadMultiple: false,
paramName: "file", // The name that will be used to transfer the file
maxFilesize: 1, // MB
addRemoveLinks: true,
maxFiles: 10,
renameFilename: function (filename) {return listing_id + '_' + new Date().getTime();},
init: function()
{
this.on("removedfile", function(file)
{
var loooot = $("span", ".dz-filename").html();
alert(loooot);
});
}
};
</script>