Create filter on html file chooser dialog

后端 未结 2 1453
旧巷少年郎
旧巷少年郎 2021-01-01 13:57

Is there a way to show only .xxx files in the default file chooser dialog. xxx may be not-known file types, such as abc, efg etc.

I\'m using html5 so it may have new

相关标签:
2条回答
  • 2021-01-01 14:02

    The HTML 5 accept attribute on file input elements is for this purpose. E.g.:

    <input type="file" accept=".doc,.docx,.xml,application/msword,application/vnd.openxmlformats-officedocument.wordprocessingml.document">
    
    0 讨论(0)
  • 2021-01-01 14:08

    For others arriving here, these are some very handy predefined sets:

    <input type="file" accept="image/*"/>
    <input type="file" accept="video/*"/>
    <input type="file" accept="audio/*"/>
    
    0 讨论(0)
提交回复
热议问题