HTML5方式上传文件,可以通过使用FormData类模拟Form表单提交,从而实现无刷新上传文件。
假设有一个文件选择框
[html] view plain copy
<input type="file" name="pic" id="pic" accept="image/gif" />
HTML5方式上传文件,可以通过使用FormData类模拟Form表单提交,从而实现无刷新上传文件。
假设有一个文件选择框
[html] view plain copy
<input type="file" name="pic" id="pic" accept="image/gif" />