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.lastModifiedDate

概要

ファイルの最終更新日を返します。

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 +
    " (最終更新日:  " +
    files[i].lastModifiedDate +
    ")"
  );
}

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

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