Please note, this is a STATIC archive of website developer.mozilla.org from 03 Nov 2016, cach3.com does not collect or store any user information, there is no "phishing" involved.

File.name

概要

ファイルの名前を返します。セキュリティ上の理由で、ファイルへのパスはこのプロパティに含まれていません。

構文

filename = File.name

var fileInput = document.getElementById("myfileinput");
// fileInput は HTMLInputElement を参照するものとする: <input type="file" multiple id="myfileinput">

var files = fileInput.files;
// files は (NodeList に似た) FileList オブジェクトを参照

for (var i = 0; i < files.length; i++) {
  alert("ファイル名: " + files[i].name);
}

ドキュメントのタグと貢献者

 このページの貢献者: fscholz, ethertank
 最終更新者: ethertank,