HTML <pulsante> digita Attributo

❮ Tag HTML <pulsante>

Esempio

Due elementi pulsante che agiscono come un pulsante di invio e un pulsante di ripristino (in un modulo):

<form action="/action_page.php" method="get">
  <label for="fname">First name:</label>
  <input type="text" id="fname" name="fname"><br><br>
  <label for="lname">Last name:</label>
  <input type="text" id="lname" name="lname"><br><br>
  <button type="submit" value="Submit">Submit</button>
  <button type="reset" value="Reset">Reset</button>
</form>

Definizione e utilizzo

L' typeattributo specifica il tipo di pulsante.

Suggerimento: specificare sempre l'attributo type per l' <button>elemento. Browser diversi possono utilizzare tipi predefiniti diversi per l' <button>elemento.


Supporto del browser

Attribute
type Yes Yes Yes Yes Yes

Sintassi

<button type="button|submit|reset">

Valori di attributo

Value Description
button The button is a clickable button
submit The button is a submit button (submits form-data)
reset The button is a reset button (resets the form-data to its initial values)

❮ Tag HTML <pulsante>