FileList item()
item() 方法可以通過索引訪問 FileList 集合中的 File 物件。
關於 FileList 參閱 JavaScript FileList 集合 一章節。
語法結構:
[JavaScript] 純文字檢視 複製程式碼fileList.item(index)
引數解析:
(1).index:必需,要訪問的集合中 File 物件的索引位置,從 0 開始計算。
特別說明:效果與採用 [index] 方式完全相同,推薦採用 [] 方式。
程式碼例項:
[HTML] 純文字檢視 複製程式碼執行程式碼<!DOCTYPE html> <html lang="zh-cn"> <head> <meta charset=" utf-8"> <meta name="author" content="https://www.softwhy.com/" /> <title>螞蟻部落</title> <script> window.onload = ()=> { let oFile = document.getElementById("file"); let oShow =document.getElementById("show"); file.onchange = function () { console.log(oFile.files.item(1)); } } </script> </head> <body> <input type="file" multiple id="file" /> </body> </html>
選中三個檔案,程式碼執行效果截圖如下:
列印出第二個 File 檔案的相關資訊。
相關文章
- JavaScript FileList 集合JavaScript
- FileList length 屬性
- JavaScript item()JavaScript
- item_get
- sticky list item
- Item Import OverviewImportView
- Free Item in PO
- Item定義
- RecyclerView增刪itemView
- CSSStyleDeclaration.item()方法CSS
- BAdI: Web ItemWeb
- 對RecyclerView Item做動畫View動畫
- Item category - VOV7Go
- ListView,點選每一個Item,如何獲取當前Item的資料?View
- [Blue Prism] Data item 的使用
- Item點選水波紋效果
- 工作294:for[item.key]使用
- How to calculate the sale order item costs?
- 【漢化】YEP.72 – Item Durability
- RecyclerView中item點選事件View事件
- Effective C++: Item 32 (轉)C++
- Effective C++: Item 21 (轉)C++
- Effective C++: Item 24 (轉)C++
- 什麼是USER ITEM TPYE?
- ITEM中的屬性控制
- ITEM中的UNIT OF PRIMARY.
- item2 新增多個 SSH
- item的介紹與使用-2.0
- item_review - 獲得淘寶評論View
- ListView項(Item)的三種佈局View
- memcache的item key和序列化
- Get the item a SharePoint workflow task is associated with
- item_get_app資料返回結果APP
- ListView Item 選擇問題解決之道View
- 有關The Requested Item Or One Of Its Components Is Not Collected
- item category 配置裡的溝溝坎坎Go
- OpenCL 增強單work-item kernel效能策略
- Android recyclerview刪除item重新整理列表AndroidView