input:file上傳型別控制簡單介紹
<input type="file">可以上傳檔案,這個就不用多介紹了。
其實我們使用此控制元件可以進行上傳檔案格式的控制。
特別說明:在實際應用中,不但要在前端進行驗證,後端也是要進行驗證的。
一.此控制元件兩個主要屬性:
屬性值有以下幾個比較常用:
accept:表示可以選擇的檔案MIME型別,多個MIME型別用英文逗號分開,常用的MIME型別見下表。
multiple:是否可以選擇多個檔案,多個檔案時其value值為第一個檔案的虛擬路徑。
1.accept:
只能選擇png和gif圖片
[HTML] 純文字檢視 複製程式碼<input id="fileId1" type="file" accept="image/png,image/gif" name="file" />
2.multiple:
多檔案上傳
[HTML] 純文字檢視 複製程式碼<input id="fileId2" type="file" multiple="multiple" name="file" />
3.常用MIME型別:
[CSS] 純文字檢視 複製程式碼字尾名 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
相關文章
- HTML5的input:file上傳型別控制HTML型別
- input file簡單實現限制上傳檔案的型別型別
- HTML5的 input:file上傳以及型別控制HTML型別
- input file控制元件限制上傳檔案型別控制元件型別
- javascript Object型別物件簡單介紹JavaScriptObject型別物件
- <input type="number" >用法簡單介紹
- input file圖片上傳
- input file美化 --上傳圖片
- javascript資料型別轉換簡單介紹JavaScript資料型別
- javascript異常報錯型別簡單介紹JavaScript型別
- input file上傳圖片預覽
- input file multiple 批量上傳檔案
- <input type="file"> 限制檔案型別型別
- 檢測input file檔案是否上傳
- 簡單介紹python的input,print,eval函式Python函式
- 使用Input type=file 原生上傳使用總結
- javascript事件控制程式碼簡單介紹JavaScript事件
- javascript流程控制語句簡單介紹JavaScript
- jcrop+Fileapi圖片上傳裁剪外掛使用簡單介紹API
- 簡單介紹Java String Methods(上)Java
- javascript運算中的隱式型別轉換簡單介紹JavaScript型別
- javascript數字和字串資料型別轉換簡單介紹JavaScript字串資料型別
- javascript 函式引用型別和簡單型別傳參JavaScript函式型別
- javascript對於值型別資料的物件包裝簡單介紹JavaScript型別物件
- input[type=file] 獲取上傳檔案的內容
- vue3中清空input type="file"上傳檔案Vue
- 如何獲取<input type="file">上傳的檔名稱
- URL和URI的區別簡單介紹
- callee與caller的區別簡單介紹
- 簡單介紹 "&&" 與 “&” 和 ”|“ 與 ”||“ 的區別
- 修改input標籤type=file型別按鈕的值型別
- 簡單介紹ASP.NET Core實現檔案上傳和下載ASP.NET
- SVG簡單介紹SVG
- HTML簡單介紹HTML
- ActiveMQ簡單介紹MQ
- HTML 簡單介紹HTML
- JavaScript 簡單介紹JavaScript
- CSS 簡單介紹CSS