pulsante Object
L'oggetto Button rappresenta un HTML <button> elemento.
Accedere a un oggetto Button
È possibile accedere a un <button> elemento utilizzando getElementById() :
Creare un oggetto pulsante
È possibile creare un <button> elemento utilizzando il document. createElement() document. createElement() Metodo:
Proprietà tasto Object
= Proprietà aggiunta in HTML5.
Proprietà | Descrizione |
---|---|
autofocus | Imposta o restituisce se un pulsante dovrebbero ottenere automaticamente messa a fuoco quando viene caricata la pagina, o no |
disabled | Imposta o restituisce se un pulsante è disabilitato, o no |
form | Restituisce un riferimento al modulo che contiene un pulsante |
formAction | Imposta o restituisce il valore del formaction attributo di un tasto |
formEnctype | Imposta o restituisce il valore del formenctype attributo di un tasto |
formMethod | Imposta o restituisce il valore del formmethod attributo di un tasto |
formNoValidate | Imposta o restituisce se i form-data dovrebbero essere convalidati o meno, su presentazione |
formTarget | Imposta o restituisce il valore del formtarget attributo di un tasto |
name | Imposta o restituisce il valore del name attributo di un tasto |
type | Imposta o restituisce il tipo di un pulsante |
value | Imposta o restituisce il valore del value attributo di un tasto |
Proprietà ed eventi standard
L'oggetto Button supporta anche lo standard proprietà ed eventi .
Pagine correlate
Di riferimento HTML: HTML <button> tag