美文网首页
2018-04-24

2018-04-24

作者: 流浪的故事灬 | 来源:发表于2018-04-24 09:57 被阅读0次

    js上传文件限制文件的类型

    做后台管理需要限制上传文件的类型;具体做法如下所示:

    《1》上传.csv格式的

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

    《2》上传.xls格式

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

    《3》上传.xslx格式

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

    《4》上传.png/.jpg/etc格式

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

    《5》上传图片格式

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

    《6》上传.htm,.html格式

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

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

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

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

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

    《9》上传.pdf格式

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

    《10》如果限制两种文件格式,同时限制

    <input type="file" accept="application/vnd.openxmlformats-officedocument.spreadsheetml.sheet,application/vnd.ms-excel">

    注意:以逗号分隔开

    原文出自:https://blog.csdn.net/hanshileiai/article/details/44702923

    相关文章

      网友评论

          本文标题:2018-04-24

          本文链接:https://www.haomeiwen.com/subject/suedlftx.html