Gli ultimi tutorial di sviluppo web
 

Keygen autofocus Proprietà

Keygen Object Reference keygen Object

Esempio

Scopri se un campo keygen ottiene automaticamente messa a fuoco al caricamento della pagina:

var x = document.getElementById("myKeygen").autofocus;

Il risultato di x sarà:

true
Prova tu stesso "

Definizione e utilizzo

Gli insiemi di proprietà di autofocus o ritorni se un campo keygen dovrebbero automaticamente ottenere concentrarsi al caricamento della pagina, oppure no.

Questa proprietà riflette l'attributo autofocus HTML.


Supporto per il browser

Internet ExplorerFirefoxOperaGoogle ChromeSafari

La struttura messa a fuoco automatica è supportata in tutti i principali browser, ad eccezione di Internet Explorer.

Nota: L'attributo autofocus HTML per il <keygen> elemento non è supportato in Firefox.


Sintassi

Restituisce la proprietà autofocus:

keygenObject .autofocus

Impostare la proprietà autofocus:

keygenObject .autofocus=true|false

I valori delle proprietà

Value Description
true|false Specifies whether a keygen field should get focus when the page loads, or not
  • true - The keygen field gets focus
  • false - Default. The keygen field does not get focus

Dettagli tecnici

Valore di ritorno: Un valore booleano, restituisce true se il campo keygen diventa automaticamente messa a fuoco quando la pagina viene caricata, altrimenti restituisce falso

Altri esempi

Esempio

Creare un <keygen> elemento e impostare autofocus a "true":

var x = document.createElement("KEYGEN");
x.setAttribute("autofocus", "true");
document.body.appendChild(x);
Prova tu stesso "

Pagine correlate

Di riferimento HTML: HTML <keygen> attributo autofocus


Keygen Object Reference keygen Object