HTML5 drag and drop and multiple file upload

前端 未结 4 707
轮回少年
轮回少年 2021-02-06 14:53

I have an HTML form that contains a file input field with multiple file selection and I also have a drag and drop feature that I am working on as well. My question is how to int

4条回答
  •  终归单人心
    2021-02-06 15:36

    
    
    Drop Files Here

    onchange and ondrop events shuld bind a function with the variable to get file list.

    var files=e.target.files||e.dataTransfer.files
    

    Read This

提交回复
热议问题