FileList.length
FileList
の読み取り専用プロパティ length
は、FileList
に含まれるファイルの数を返します。
値
リスト中のファイルの数を表す数。
例
選択されたファイルの数を出力する
この例では、FileList
の中のアイテム数を知るために length
を使います。
HTML
html
<input type="file" multiple />
<div class="output"></div>
JavaScript
js
const fileInput = document.querySelector("input[type=file]");
const output = document.querySelector(".output");
fileInput.addEventListener("change", () => {
const fileList = fileInput.files;
output.textContent = `あなたは ${fileList.length} 個のファイルを選択しました`;
});
結果
仕様書
Specification |
---|
File API # dfn-length |
ブラウザーの互換性
BCD tables only load in the browser