zoukankan      html  css  js  c++  java
  • input="file" 浏览时只显示指定excel文件,筛选特定文件类型

    <p>显示 .xls, .xlsx, .csv 文件...</p>
    <input type="file" accept=".csv, application/vnd.openxmlformats-officedocument.spreadsheetml.sheet, application/vnd.ms-excel" ID="fileSelect" runat="server" />  




    <p>只显示  Excel (.xlsx) 文件...</p>
    <input type="file" accept="application/vnd.openxmlformats-officedocument.spreadsheetml.sheet" ID="fileSelect" runat="server" />  


    <p>只显示 Excel (.xls) 文件...</p>
    <input type="file" accept="application/vnd.ms-excel" ID="fileSelect" runat="server" />  




    <p>只显示图片.</p>
    <input type="file" accept="image/*" ID="fileSelect" runat="server" />  




    <p>只显示文本文件...</p>
    <input type="file" accept="text/plain" ID="fileSelect" runat="server" />  


    <p>只显示html文件.</p>
    <input type="file" accept="text/html" ID="fileSelect" runat="server" />  


    <p>只显示 video 文件..</p>
    <input type="file" accept="video/*" ID="fileSelect" runat="server" />  


    <p>只显示 audio 文件...</p>
    <input type="file" accept="audio/*" ID="fileSelect" runat="server" />  


    <p>只显示 .WAV 文件...</p>
    <input type="file" accept=".wav" ID="fileSelect" runat="server" />  


    <p>只显示 .PDF 文件...</p>
    <input type="file" accept=".pdf" ID="fileSelect" runat="server" />   

    转载来源:CSDN 原文:https://blog.csdn.net/DosMing/article/details/77891560?utm_source=copy 

  • 相关阅读:
    梦断代码阅读笔记02---Agenda之魂
    学习进度条(第十一周)
    冲刺第五天
    冲刺第四天
    典型用户和用户场景分析
    冲刺第三天
    冲刺第二天
    冲刺第一天
    2016huasacm暑假集训训练三 D
    2016huasacm暑假集训训练三 C
  • 原文地址:https://www.cnblogs.com/quitpoison/p/9765974.html
Copyright © 2011-2022 走看看