FileList length 屬性

admin發表於2020-04-01

length 屬性可以獲取 FileList 集合中 File 物件的數量。

關於 FileList 參閱 JavaScript FileList 集合 一章節。

語法結構:

[JavaScript] 純文字檢視 複製程式碼
FileList.length

屬性返回值是一個表示 File 物件數量的數字。

程式碼例項如下:

[HTML] 純文字檢視 複製程式碼執行程式碼
<!DOCTYPE html>
<html lang="zh-cn">
<head>
<meta charset=" utf-8">
<meta name="author" content="https://www.softwhy.com/" />
<title>螞蟻部落</title>
<style>
div {
  width: 150px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  border: 2px dotted green;

}
</style>  
<script>
window.onload = ()=> {
  let oFile = document.getElementById("file");
  let oShow =document.getElementById("show");
  file.onchange = function () {
    oShow.innerHTML = oFile.files.length;
  }
}
</script>
</head>
<body>
<input type="file" multiple id="file" /> 
<div id="show"></div>
</body>
</html>

程式碼執行效果截圖如下:

a:3:{s:3:\"pic\";s:43:\"portal/202004/01/000841d550k5yttcp5vljo.png\";s:5:\"thumb\";s:0:\"\";s:6:\"remote\";N;}

上述程式碼將集合中檔案數量寫入 div 元素中。

相關文章