HTMLElement: blur() Methode

Die HTMLElement.blur() Methode entfernt den Tastaturfokus vom aktuellen Element.

Syntax

js
blur()

Parameter

Keine.

Rückgabewert

Keine (undefined).

Beispiele

Fokus von einem Texteingabefeld entfernen

HTML

html
<input type="text" id="sampleText" value="Sample Text" /> <br /><br />
<button type="button" onclick="focusInput()">Click me to gain focus</button>

JavaScript

js
function focusInput() {
  const textField = document.getElementById("sampleText");

  textField.focus();

  // The input will lose focus after 3 seconds
  setTimeout(() => {
    textField.blur();
  }, 3000);
}

Ergebnis

Spezifikationen

Specification
HTML Standard
# dom-blur-dev

Browser-Kompatibilität

BCD tables only load in the browser

Siehe auch