HTMLInputElement: capture-Eigenschaft
Limited availability
This feature is not Baseline because it does not work in some of the most widely-used browsers.
Die capture
-Eigenschaft der HTMLInputElement
-Schnittstelle spiegelt das capture
-Attribut des <input>
-Elements wider. Nur relevant für das <input>
vom Typ file
, spezifizieren die Eigenschaft und das Attribut, ob eine neue Datei von einer benutzerorientierten (user
) oder nach außen gerichteten (environment
) Kamera oder Mikrofon erfasst werden soll. Der Dateityp wird durch das accept
-Attribut definiert. Wenn das Attribut nicht ausdrücklich gesetzt ist, ist die capture
-Eigenschaft ein leerer String.
Wert
Ein String; allgemein entweder user
oder environment
, oder ein leerer String (""
).
Beispiel
const inputElement = document.querySelector("avatar");
console.log(inputElement.capture); // the current value of the capture attribute
inputElement.capture = "user"; // sets the capture value
Spezifikationen
Specification |
---|
HTML Media Capture # dom-htmlinputelement-capture |
Browser-Kompatibilität
BCD tables only load in the browser