Input FileUpload 文件 属性
实例
使用文件上传按钮选择一个或多个文件,并显示有关所选文件的一些信息:
var x = document.getElementById("myFile");
var txt = "";
if ('files' in x) {
if (x.files.length == 0) {
txt = "Select one or more files.";
} else {
for (var i = 0; i < x.files.length; i++) {
txt += "<br><strong>" + (i+1) + ". file</strong><br>";
var file = x.files[i];
if ('name' in file) {
txt += "name: " + file.name + "<br>";
}
if ('size' in file) {
txt += "size: " + file.size + " bytes <br>";
}
}
}
}
document.getElementById ("demo").innerHTML = txt;
亲自试一试 »
定义和用法
files 属性返回一个 FileList 对象,表示使用文件上传按钮选择的一个或多个文件。
通过 FileList 对象,可以获取文件的名称、大小和内容
该属性是只读的。
浏览器支持
属性 | |||||
---|---|---|---|---|---|
files | Yes | 10.0 | Yes | Yes | Yes |
语法
fileuploadObject.files
技术细节
返回值: | 代表所选文件的 FileList 对象 |
---|
❮ Input FileUpload 对象