HTMLOptGroupElement: disabled Eigenschaft

Baseline Widely available

This feature is well established and works across many devices and browser versions. It’s been available across browsers since July 2015.

Die disabled-Eigenschaft der Schnittstelle HTMLOptGroupElement ist ein boolescher Wert, der das Attribut disabled des <optgroup>-Elements widerspiegelt. Dieses Attribut gibt an, ob das Steuerelement deaktiviert ist.

Wenn es deaktiviert ist, sind die <option>-Elementnachkommen des <optgroup>-Elements unbrauchbar, nicht anklickbar und nicht auswählbar. Diese deaktivierten <option>s entsprechen dem :disabled-Selektor, selbst wenn ihr disabled-Eigenschaftswert false ist.

Wert

Ein boolescher Wert.

Beispiele

js
const optionGroup = document.getElementById("groupB");
console.log(optionGroup.disabled);
optionGroup.disabled = true;

Spezifikationen

Specification
HTML Standard
# dom-optgroup-disabled

Browser-Kompatibilität

BCD tables only load in the browser

Siehe auch