Diese Übersetzung ist unvollständig. Bitte helfen Sie, diesen Artikel aus dem Englischen zu übersetzen.
Returns the name of the file. For security reasons, the path is excluded from this property.
Syntax
var name = instanceOfFile.name
Value
A string.
Example
// fileInput is a HTMLInputElement: var fileInput = document.getElementById("myfileinput"); // files is a FileList object (simliar to NodeList) var files = fileInput.files; for (var i = 0; i < files.length; i++) { alert("Filename " + files[i].name); }
Specifications
Specification | Status | Comment |
---|---|---|
File API Die Definition von 'name' in dieser Spezifikation. |
Arbeitsentwurf | Initial definition. |
Browser compatibility
Feature | Chrome | Firefox (Gecko) | Internet Explorer | Opera | Safari (WebKit) |
---|---|---|---|---|---|
File.name | 13.0 | 3.6 (1.9.2) | 10.0 | 16.0 | Nicht unterstützt |
Feature | Android | Firefox Mobile (Gecko) | IE Phone | Opera Mobile | Safari Mobile |
---|---|---|---|---|---|
File.name | Nicht unterstützt | Nicht unterstützt | Nicht unterstützt | Nicht unterstützt | Nicht unterstützt |