标签:上传 cat ide document input https app 格式 doc
<input type="file" name="file" id="file"
accpet=".doc,.docx,application/msword,application/vnd.openxmlformats-officedocument.wordprocessingml.document" >
? accpet属性:此属性限制文件的输入,当点击输入框时,会自动过滤并留下允许的格式(其中的字符串为MIME类型);
? files属性:此属性当multiple未设置时,只包含上传的文件,且只有一个;
//files属性不会在输入框展示需要在js中的dom中进行获取
let files = document.getElementById(‘file‘).files[0]
? multiple属性:此属性设置时可选择多个文件;
音频文件:字符串 audio/*
, 表示“任何音频文件”
视频文件:字符串 video/*
,表示 “任何视频文件”
图片文件:字符串 image/*
,表示 “任何图片文件”
[https://www.w3school.com.cn/media/media_mimeref.asp]:
标签:上传 cat ide document input https app 格式 doc
原文地址:https://www.cnblogs.com/xujiuran/p/14757286.html