GlobalEventHandlers.onkeyup

Invalid slug for templ/sidebar: conflicting/Web/API/Element/keyup_event

A propriedade onkeyup retorna o código de manipulador de eventos onKeyUp no elemento atual.

Sintaxe

element.onkeyup = código do manipulador do eventos

Exemplo

js
 <input type="text" onKeyUp="teclaPressionada(event)">
 <script>
    function teclaPressionada(evt) {
       console.log(evt.keyCode)
    }
 </script>

Notas

O evento keyup é iniciado quando o usuário libera a tecla é pressionada.

Especificações

No specification found

No specification data found for undefined.
Check for problems with this page or contribute a missing spec_url to mdn/browser-compat-data. Also make sure the specification is included in w3c/browser-specs.

Compatibilidade com navegadores