[HTML] [attributo evento] onreset

onreset (attributo evento HTML) si attiva quando l’utente fa il reset di un form.

tag

<form>

Sintassi

onreset = "[script]"

Esempi

<script>
function Funzione() {
    alert("Modulo azzerato");
}
</script>
<form onreset="Funzione()">
<input type="text" placeholder="Inserisci un testo e poi premi il tasto reset">
<button type="reset">cancella</button>
</form>



Contenuti correlati

  • CSS
  • HTML
  • JavaScript
  • jQuery
  • PHP
  • SQL
  • WORDPRESS

Fonti esterne

attributi evento html, html

Related Articles

0 Comment

Rispondi