美文网首页
input 上传文件类型accept

input 上传文件类型accept

作者: krystal_H | 来源:发表于2021-08-25 20:12 被阅读0次
    1、<input text="file" accept=".csv" />  cvs格式
     
    2、<input text="file"  accept="application/vnd.ms-excel"/>  上传.xls格式
     
    3、<input text="fiel" accept="application/vnd.openxmlformats-officedocument.spreadsheetml.sheet"/>   上传.xslx格式
     
    4、<input type="file" accept="text/plain" />   上传.png/.jpg/etc格式
     
    5、<input type="file" accept="image/*" />   上传图片格式
     
    6、<input type="file" accept="text/html" />  上传.htm,.html格式
     
    7、<input type="file" accept="video/*" />   上传video(.avi, .mpg, .mpeg, .mp4)格式
     
    8、<input type="file" accept="audio/*" />   上传audio(.mp3, .wav, etc)格式
     
    9、<input type="file" accept=".pdf" />   上传.pdf格式
     
    10、<input type="file" accept=".zip" />   上传.zip格式
     
    11、<input type="file" accept=".zip" multiple />   上传多个(multiple)
     
    12、<input type="file" accept="application/vnd.openxmlformats-officedocument.spreadsheetml.sheet,application/vnd.ms-excel">  如果限制两种文件格式,同时限制
      
    13、上传文件夹  (注意 : 上传文件夹 只能上传文件夹,不可以和文件同时上传)
    <input type="file" webkitdirectory />   上传文件夹 (webkitdirectory) 
     
    

    相关文章

      网友评论

          本文标题:input 上传文件类型accept

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