HTMLInputElement: multiple-Eigenschaft
Die HTMLInputElement.multiple
-Eigenschaft gibt an, ob ein Eingabefeld mehr als einen Wert haben kann. Firefox unterstützt derzeit multiple
nur für <input type="file">
.
Wert
Ein boolescher Wert.
Beispiele
html
<input id="my-file-input" type="file" multiple />
js
let fileInput = document.getElementById("my-file-input");
if (fileInput.multiple) {
// Loop fileInput.files
for (const file of fileInput.files) {
// Perform action on one file
}
// Only one file available
} else {
let [file] = fileInput.files;
}
Spezifikationen
Specification |
---|
HTML Standard # dom-input-multiple |
Browser-Kompatibilität
BCD tables only load in the browser
Siehe auch
- FileList
- Bug 523771 - Support <input type=file multiple>