English | 简体中文 | 繁體中文 | Русский язык | Français | Español | Português | Deutsch | 日本語 | 한국어 | Italiano | بالعربية

Metodo blur() Window

Oggetto Window JavaScript

blur()Il metodo rimuove il focus dalla finestra corrente.

Il metodo blur() è equivalente al fatto che l'utente sposta il focus dalla finestra corrente.

Usofocus()Il metodo imposta il focus sulla finestra corrente.

Sintassi:

window.blur();
var popupWindow = window.open("https://it.oldtoolbag.com");
popupWindow.blur();
Prova a Vederlo‹/›

Compatibilità Browser

Tutti i browser supportano completamente il metodo blur():

Metodo
blur()

Dettagli Tecnici

Valore di Ritorno:Nessuno

Referenze Correlate

Referenza Finestra (Window):Metodo focus()

Oggetto Window JavaScript