>
上传文件控制文件格式
2023-03-15 13:56
前端
  • 702
  • 527
  • 64
  • 51

input accept 属性是用来限制上传的文件格式

<input type="file" id="file" style="display:none;" accept=".csv"/>
<a href="javascript:selectFile()">上传excel文件</a>


function selectFile()
        {
            document.getElementById('file').click();
        }


上传.xslx格式

<input text="fiel" accept="application/vnd.openxmlformats-officedocument.spreadsheetml.sheet"/>


上传.csv格式

<input text="file" accept=".csv" />


上传.xls格式

<input text="file"  accept="application/vnd.ms-excel"/>


上传.png/.jpg/etc格式

<input type="file" accept="text/plain" />


上传图片格式

<input type="file" accept="image/*" />


上传.htm,.html格式

<input type="file" accept="text/html" />


上传video(.avi, .mpg, .mpeg, .mp4)格式

<input type="file" accept="video/*" />


上传audio(.mp3, .wav, etc)格式

<input type="file" accept="audio/*" />


上传.pdf格式

<input type="file" accept=".pdf" />


全部留言 ()
返回
顶部