如何使用dropzonejs将文件分配给不同的html元素

时间:2017-10-20 05:14:15

标签: javascript dropzone.js

在我的html页面中,pFile元素就在那里

<input type="file" name="pFile" id="primaryFile-20" size="35" maxlength="250" value="">

如何在拖放后将文件分配给该ID?

我无法编辑html页面。我唯一能做的就是创建javascript文件来覆盖它

Dropzone.options.myAwesomeDropzone = {
        autoProcessQueue : false,
    dictDefaultMessage: "Drop file here and use checkin button for upload",
    url: "/cs/idcplg?",
    init : function() {

   myDropzone = this;

             this.on("dragend",function(event) {

document.getElementsByName("pFile).files=myDropzone.files;   

}



}


}

这正在接近无效

0 个答案:

没有答案