fe-learn-code icon indicating copy to clipboard operation
fe-learn-code copied to clipboard

前端学习路上的代码实例,目的-辅助学习和工作

Results 3 fe-learn-code issues
Sort by recently updated
recently updated
newest added

![image](https://user-images.githubusercontent.com/15773714/71827924-3cd8c900-30dc-11ea-942d-d4bf9c2d4237.png)

```html 多文件上传 之 xhr formdata 选择文件(可多选): 上 传 ``` ```js var fileList = document.getElementById('f1').files; console.log(document.getElementById('title')) if(!fileList.length){ alert('请选择文件'); return; } var fd = new FormData(); //构造FormData对象 fd.append('title', document.getElementById('title').value); ``` ### 关于...

多文件,单进度的例子是不是有问题呢, 跑起来的时候实现不了效果