700字范文,内容丰富有趣,生活中的好帮手!
700字范文 > input file属性accept的过滤功能指定默认可选的文件类型

input file属性accept的过滤功能指定默认可选的文件类型

时间:2021-06-22 01:48:10

相关推荐

input file属性accept的过滤功能指定默认可选的文件类型

过滤CSV files (.csv):

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

过滤Excel文件- (.xls), use:

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

过滤Excel文件(.xlsx):

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

过滤文本文件(.txt) :

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

过滤图片文件 (.png/.jpg/etc),:

<input type="file" accept="image/*,.jpeg" />

过滤 网页文件(.htm,.html):

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

过滤视频文件 (.avi, .mpg, .mpeg, .mp4):

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

过滤声音文件 (.mp3, .wav, etc):

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

本内容不代表本网观点和政治立场,如有侵犯你的权益请联系我们处理。
网友评论
网友评论仅供其表达个人看法,并不表明网站立场。