[HTML] [attributo evento] onkeyup

onkeyup (attributo evento HTML) si attiva quando si rilascia il tasto della tastiera sull’elemento HTML.

tag

Tutti

Sintassi

onkeyup = "[script]"

Esempi

<script>
function Funzione() {
    var x = document.getElementById("evento_onkeyup");
    x.value = x.value.toUpperCase();
}
</script>
Compila questo campo:
<input id="evento_onkeyup" onkeyup="Funzione()">

Contenuti correlati

Fonti esterne

attributi evento html, html

Related Articles

0 Comment

Rispondi