Element: ariaMultiLine-Eigenschaft
Baseline 2023
Newly available
Since October 2023, this feature works across the latest devices and browser versions. This feature might not work in older devices or browsers.
Die ariaMultiLine
-Eigenschaft des Element
-Interfaces spiegelt den Wert des aria-multiline
-Attributs wider, das angibt, ob ein Textfeld mehrere Zeilen der Eingabe akzeptiert oder nur eine einzelne Zeile.
Hinweis: Verwenden Sie nach Möglichkeit ein HTML-<input>
-Element mit type="text"
oder ein <textarea>
, da diese eingebaute Semantik haben und keine ARIA-Attribute erfordern.
Wert
Beispiele
In diesem Beispiel ist das aria-multiline
-Attribut des Elements mit der ID txtBoxInput
auf "true" gesetzt, was anzeigt, dass dieses Feld mehrere Zeilen der Eingabe erlaubt. Mit ariaMultiLine
aktualisieren wir den Wert auf "false".
<div id="txtboxMultilineLabel">Enter the tags for the article</div>
<div
role="textbox"
id="txtBoxInput"
contenteditable="true"
aria-multiline="true"
aria-labelledby="txtboxMultilineLabel"
aria-required="true"></div>
let el = document.getElementById("txtBoxInput");
console.log(el.ariaMultiLine); // "true"
el.ariaMultiLine = "false";
console.log(el.ariaMultiLine); // "false"
Spezifikationen
Specification |
---|
Accessible Rich Internet Applications (WAI-ARIA) # dom-ariamixin-ariamultiline |
Browser-Kompatibilität
BCD tables only load in the browser