1没有知识的旅游者是一只没有翅膀的鸟。——萨阿迪
使用的dropzone
库,你可以将任意类型的文件拖拽进去上传,如果是目录,则会获取目录内的文件
https://github.com/dropzone/dropzone
代码如下:
<link
rel="stylesheet"
href="https://unpkg.com/dropzone@5/dist/min/dropzone.min.css"
type="text/css"
/>
<script src="https://unpkg.com/dropzone@5/dist/min/dropzone.min.js"></script>
<div class="my-dropzone dz-clickable" style="
display: block;
width: 100px;
height: 100px;
background: greenyellow;
"></div>
<script>
// Dropzone has been added as a global variable.
const dropzone = new Dropzone("div.my-dropzone", { url: "/file/post" });
console.log({dropzone})
</script>
效果:
// Dropzone has been added as a global variable. const dropzone = new Dropzone("div.my-dropzone", { url: "/file/post" }); console.log({dropzone})
扫码关注腾讯云开发者
领取腾讯云代金券
Copyright © 2013 - 2025 Tencent Cloud. All Rights Reserved. 腾讯云 版权所有
深圳市腾讯计算机系统有限公司 ICP备案/许可证号:粤B2-20090059 深公网安备号 44030502008569
腾讯云计算(北京)有限责任公司 京ICP证150476号 | 京ICP备11018762号 | 京公网安备号11010802020287
Copyright © 2013 - 2025 Tencent Cloud.
All Rights Reserved. 腾讯云 版权所有