1)拖拽方面的重点是:ondragover 事件 和 ondrop 事件
ondragover 是必须的,ondragover 事件里禁用掉 html 的默认事件,否则 ondrop 事件将无效(直接捕捉不到ondrop事件了)
dropzone.addEventListener("dragover", function(event) { event.preventDefault();}, false);
2)读取目录用到的 webApi 主要有: 、 和
3)详情说明及示例:
H5 拖拽读取文件和文件夹 Drag files and/or directories to the box below!
Drop Files HereDirectory tree:
4)用到的其他 Api:
5)官方原版示例: