zoukankan      html  css  js  c++  java
  • HTML input="file" 浏览时只显示指定文件类型 xls、xlsx、csv

    html input=”file” 浏览时只显示指定文件类型 xls、xlsx、csv


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

    Valid Accept Types:

    For CSV files (.csv), use:

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

    For Excel Files 2003-2007 (.xls), use:

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

    For Excel Files 2010 (.xlsx), use:

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

    For Text Files (.txt) use:

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

    For Image Files (.png/.jpg/etc), use:

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

    For HTML Files (.htm,.html), use:

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

    For Video Files (.avi, .mpg, .mpeg, .mp4), use:

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

    For Audio Files (.mp3, .wav, etc), use:

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

    For PDF Files, use:

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

    DEMO:
    http://jsfiddle.net/dirtyd77/LzLcZ/144/

    NOTE:

    If you are trying to display Excel CSV files (.csv), do NOT use:

    • text/csv
    • application/csv
    • text/comma-separated-values (works in Opera only).
      If you are trying to display a particular file type (for example, a WAV or PDF), then this will almost always work…
     <input type="file" accept=".FILETYPE" />

    原文:http://stackoverflow.com/questions/11832930/html-input-file-accept-attribute-file-type-csv

  • 相关阅读:
    android 入门-Activity及 字体
    android 入门-安装环境
    PS 零基础训练1
    txt操作
    C#重绘TabControl
    ini操作
    C#编写ActiveX控件
    远程目录和文件判断
    c#一些操作
    c#消息窗体
  • 原文地址:https://www.cnblogs.com/hedianwei/p/6139616.html
Copyright © 2011-2022 走看看