Element: ariaReadOnly-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 ariaReadOnly
-Eigenschaft des Element
-Interfaces spiegelt den Wert des aria-readonly
-Attributs wider, das anzeigt, dass das Element nicht bearbeitbar, aber dennoch bedienbar ist.
Hinweis: Verwenden Sie nach Möglichkeit ein HTML-<input>
-Element mit type="text"
oder ein <textarea>
, da diese über eingebaute Semantik verfügen und keine ARIA-Attribute benötigen.
Wert
Beispiele
In diesem Beispiel ist das aria-readonly
-Attribut des Elements mit der ID txtBoxInput
auf "true" gesetzt, was anzeigt, dass diese Eingabe derzeit schreibgeschützt ist. Mit ariaReadOnly
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-readonly="true"></div>
let el = document.getElementById("txtBoxInput");
console.log(el.ariaReadOnly); // "true"
el.ariaReadOnly = "false";
console.log(el.ariaReadOnly); // "false"
Spezifikationen
Specification |
---|
Accessible Rich Internet Applications (WAI-ARIA) # dom-ariamixin-ariareadonly |
Browser-Kompatibilität
BCD tables only load in the browser