HTML input accept 屬性 (文件上傳類型控制)

2018-01-08 19:38 更新

HTML input accept 屬性

HTML input 標(biāo)簽參考手冊(cè)HTML <input> 標(biāo)簽

實(shí)例

規(guī)定在文件上傳中服務(wù)器只接受圖像文件:

<form action="demo-form.php">
 <input type="file" name="pic" accept="image/*">
 <input type="submit">
</form>

嘗試一下 ?

瀏覽器支持

Internet Explorer Firefox Opera Google Chrome Safari

Internet Explorer 10、Firefox、Opera、Chrome 和 Safari 6 支持 accept 屬性。

注意:Internet Explorer 9 及之前的版本都不支持 <input> 標(biāo)簽的 accept 屬性。


定義和用法

accept 屬性規(guī)定了可通過文件上傳提交的服務(wù)器接受的文件類型。

注意:accept 屬性僅適用于 <input type="file">。

提示:請(qǐng)不要將該屬性作為您的驗(yàn)證工具。應(yīng)該在服務(wù)器上對(duì)文件上傳進(jìn)行驗(yàn)證。


HTML 4.01 與 HTML5之間的差異

無(wú)。


語(yǔ)法

<input accept="audio/*|video/*|image/*|MIME_type">

提示:如需規(guī)定多個(gè)值,請(qǐng)使用逗號(hào)分隔(比如 <input accept="audio/*,video/*,image/*" />)。

屬性值

描述
audio/* 接受所有的聲音文件。
video/* 接受所有的視頻文件。
image/* 接受所有的圖像文件。
MIME_type 一個(gè)有效的 MIME 類型,不帶參數(shù)。請(qǐng)參閱 IANA MIME 類型,獲得標(biāo)準(zhǔn) MIME 類型的完整列表。


常用MIME類型

后綴名       MIME名稱
*.3gpp    audio/3gpp, video/3gpp
*.ac3    audio/ac3
*.asf       allpication/vnd.ms-asf
*.au           audio/basic
*.css           text/css
*.csv           text/csv
*.doc    application/msword    
*.dot    application/msword    
*.dtd    application/xml-dtd    
*.dwg    image/vnd.dwg    
*.dxf      image/vnd.dxf
*.gif            image/gif    
*.htm    text/html    
*.html    text/html    
*.jp2            image/jp2    
*.jpe       image/jpeg
*.jpeg    image/jpeg
*.jpg          image/jpeg    
*.js       text/javascript, application/javascript    
*.json    application/json    
*.mp2    audio/mpeg, video/mpeg    
*.mp3    audio/mpeg    
*.mp4    audio/mp4, video/mp4    
*.mpeg    video/mpeg    
*.mpg    video/mpeg    
*.mpp    application/vnd.ms-project    
*.ogg    application/ogg, audio/ogg    
*.pdf    application/pdf    
*.png    image/png    
*.pot    application/vnd.ms-powerpoint    
*.pps    application/vnd.ms-powerpoint    
*.ppt    application/vnd.ms-powerpoint    
*.rtf            application/rtf, text/rtf    
*.svf           image/vnd.svf    
*.tif         image/tiff    
*.tiff       image/tiff    
*.txt           text/plain    
*.wdb    application/vnd.ms-works    
*.wps    application/vnd.ms-works    
*.xhtml    application/xhtml+xml    
*.xlc      application/vnd.ms-excel    
*.xlm    application/vnd.ms-excel    
*.xls           application/vnd.ms-excel    
*.xlt      application/vnd.ms-excel    
*.xlw      application/vnd.ms-excel    
*.xml    text/xml, application/xml    
*.zip            aplication/zip    
*.xlsx     application/vnd.openxmlformats-officedocument.spreadsheetml.sheet

HTML input 標(biāo)簽參考手冊(cè)HTML <input> 標(biāo)簽


以上內(nèi)容是否對(duì)您有幫助:
在線筆記
App下載
App下載

掃描二維碼

下載編程獅App

公眾號(hào)
微信公眾號(hào)

編程獅公眾號(hào)