html input accept类型

在上传文件的时候,需要限制指定的文件类型。

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

accept表示可以上传文件类型,image表示图片,*表示所有支持的格式。

accept可以指定如下信息:


*.3gpp


audio/3gpp, video/3gpp


3GPP Audio/Video


*.ac3


audio/ac3


AC3 Audio


*.asf


allpication/vnd.ms-asf


Advanced Streaming Format


*.au


audio/basic


AU Audio


*.css


text/css


Cascading Style Sheets


*.csv


text/csv


Comma Separated Values


*.doc


application/msword


MS Word Document


*.dot


application/msword


MS Word Template


*.dtd


application/xml-dtd


Document Type Definition


*.dwg


image/vnd.dwg


AutoCAD Drawing Database


*.dxf


image/vnd.dxf


AutoCAD Drawing Interchange Format


*.gif


image/gif


Graphic Interchange Format


*.htm


text/html


HyperText Markup Language


*.html


text/html


HyperText Markup Language


*.jp2


image/jp2


JPEG-2000


*.jpe


image/jpeg


JPEG


*.jpeg


image/jpeg


JPEG


*.jpg


image/jpeg


JPEG


*.js


text/javascript, application/javascript


JavaScript


*.json


application/json


JavaScript Object Notation


*.mp2


audio/mpeg, video/mpeg


MPEG Audio/Video Stream, Layer II


*.mp3


audio/mpeg


MPEG Audio Stream, Layer III


*.mp4


audio/mp4, video/mp4


MPEG-4 Audio/Video


*.mpeg


video/mpeg


MPEG Video Stream, Layer II


*.mpg


video/mpeg


MPEG Video Stream, Layer II


*.mpp


application/vnd.ms-project


MS Project Project


*.ogg


application/ogg, audio/ogg


Ogg Vorbis


*.pdf


application/pdf


Portable Document Format


*.png


image/png


Portable Network Graphics


*.pot


application/vnd.ms-powerpoint


MS PowerPoint Template


*.pps


application/vnd.ms-powerpoint


MS PowerPoint Slideshow


*.ppt


application/vnd.ms-powerpoint


MS PowerPoint Presentation


*.rtf


application/rtf, text/rtf


Rich Text Format


*.svf


image/vnd.svf


Simple Vector Format


*.tif


image/tiff


Tagged Image Format File


*.tiff


image/tiff


Tagged Image Format File


*.txt


text/plain


Plain Text


*.wdb


application/vnd.ms-works


MS Works Database


*.wps


application/vnd.ms-works


Works Text Document


*.xhtml


application/xhtml+xml


Extensible HyperText Markup Language


*.xlc


application/vnd.ms-excel


MS Excel Chart


*.xlm


application/vnd.ms-excel


MS Excel Macro


*.xls


application/vnd.ms-excel


MS Excel Spreadsheet


*.xlt


application/vnd.ms-excel


MS Excel Template


*.xlw


application/vnd.ms-excel


MS Excel Workspace


*.xml


text/xml, application/xml


Extensible Markup Language


*.zip


aplication/zip


Compressed Archive

时间: 2024-11-08 10:05:28

html input accept类型的相关文章

规则 防火墙 iptables input accept【转】

由于 mangle 这个表格很少被使用,如果将图 9.3-3 的 mangle 拿掉的话,那就容易看的多了: 图 9.3-4.iptables 内建各表格与链的相关性(简图) 透过图 9.3-4 你就可以更轻松的了解到,事实上与本机最有关的其实是 filter 这个表格内的 INPUT 与 OUTPUT 这两条链,如果你的 iptables 只是用来保护 Linux 主机本身的话,那 nat 的规则根本就不需要理他,直接设定为开放即可. 不过,如果你的防火墙事实上是用来管制 LAN 内的其他主机

HTML5移动开发中的input输入框类型

HTML5规范引入了许多新的input输入框类型 在HTML5移动开发中,通过这些新的输入框类型来显示定制后的键盘布局,用户体验更好,更容易填写各种表单 本文中,实测手机为肾4S与米4 数字类型number 定义input类型为type="number"时,iOS显示数字.标点及符号键盘,Android显示拨号键盘.代码如下所示 1 <input type="number" id="number" name="number&quo

form表单input file类型的重置

我们知道form表单的dom中有一个reset方法,通过 document.getelemetbyid('yourform').reset()可以重置表单. Jquery对象没有reset方法,所以jquery的重置也是通过dom的reset方法完成,即 $('yourform')[0].reset() 对于form表单的input file类型的元素,在其他主流浏览器中通过form的reset方法完全可以重置 但是IE9以及以下对input file类型,reset无法重置.查了一些资料据说是

openssl之BIO系列之18---接受(accept)类型BIO

接受(accept)类型BIO ---依据openssl doc\crypto\bio_s_accept.pod翻译和自己的理解写成 (作者:DragonKing, Mail: [email protected] ,公布于:http://gdwzh.126.com之o penssl专业论坛) 接受(accept)类型的BIO跟连接(connect)类型BIO是相相应的,它封装了Socke t的accept方法及其相关的一些操作,使得可以对不同的平台使用同一的函数进行操作. 其定义的相关函数例如以

[oldboy-django][2深入django]学生管理(Form)-- 编辑(设置input标签属性,设置input标签默认显示值,设置input的类型)

1 django 后台实现设置input标签属性,设置input标签默认显示值,设置input输入框类型 # Form生成html标签 a. 通过Form生成Input输入框,Form标签,以及submit标签还是要在前端写的, 但是Form标签内的Input标签可以在后台实现:只需要按以下步骤 - views定义StudentForm(Form)类 - views视图函数将Form实例化对象传递给前端 - 前端{{ obj.段 }}即可 b. 通过Form设置前端Input的type属性,即设

input file accept类型

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 (.xl

input accept属性控制选择文件类型

<form> <input type="file" name="pic" id="pic" accept="image/gif, image/jpeg" /> </form>

input file类型,文件类型的限制

input type='file'的文件类型限制:"自定义文件" "所有文件" "自定义文件":是来自accept属性的限制 直接限制input type='file'的文件类型限制,通过accept属性进行设定,多个类型用逗号分隔开,因为accept是html5的新特性,所以火狐和IE的支持就显得单薄了, 如: accept可以指定如下信息:   *.3gpp audio/3gpp, video/3gpp 3GPP Audio/Video *.

input accept属性限制文件上传格式

上传文件的类型:具体做法如下所示: 注意:accept属性可以限制上传格式,其有兼容性如下 <1>上传.csv格式的 <input text="file" accept=".csv" /> <2>上传.xls格式 <input text="file"  accept="application/vnd.ms-excel"/> <3>上传.xslx格式 <input