HTMLElement: blur() Methode
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 HTMLElement.blur()
Methode entfernt die Tastaturfokussierung vom aktuellen Element.
Syntax
js
blur()
Parameter
Keine.
Rückgabewert
Keine (undefined
).
Beispiele
Den Fokus aus einem Texteingabefeld entfernen
HTML
html
<input type="text" id="sampleText" value="Sample Text" /><br /><br />
<button type="button">Click me to gain focus</button>
JavaScript
js
const textField = document.getElementById("sampleText");
const button = document.querySelector("button");
function focusInput() {
textField.focus();
// The input will lose focus after 3 seconds
setTimeout(() => {
textField.blur();
}, 3000);
}
button.addEventListener("click", focusInput);
Ergebnis
Spezifikationen
Specification |
---|
HTML # dom-blur-dev |