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
- CSS
- HTML
- JavaScript
- jQuery
- PHP
- SQL
- WORDPRESS
0 Comment