HTMLInputElement: disabled-Eigenschaft

Die HTMLInputElement.disabled-Eigenschaft ist ein boolescher Wert, der das HTML-Attribut disabled widerspiegelt und angibt, ob das Steuerelement deaktiviert ist. Wenn es deaktiviert ist, akzeptiert es keine Klicks. Ein deaktiviertes Element ist nicht nutzbar und nicht anklickbar.

Wert

Ein boolescher Wert.

Beispiele

HTML

html
<p>
  <label>
    <input id="check-box" name="b" value="1" type="checkbox" disabled /> Check
    this box!
  </label>
</p>
<p>
  <label>
    <input id="toggle-box" name="b" value="2" type="checkbox" /> Enable the
    other checkbox.
  </label>
</p>

JavaScript

js
const checkBox = document.getElementById("check-box");
const toggleBox = document.getElementById("toggle-box");

toggleBox.addEventListener(
  "change",
  (event) => {
    checkBox.disabled = !event.target.checked;
  },
  false,
);

Ergebnis

Spezifikationen

Specification
HTML Standard
# dom-fe-disabled

Browser-Kompatibilität

BCD tables only load in the browser