blob: 394aa886b2d161a68aa5d4cb19daae776a763cd2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
|
---
title: GlobalEventHandlers.onkeyup
slug: Web/API/GlobalEventHandlers/onkeyup
tags:
- API
- HTML DOM
- Propriedade
- Referencia
translation_of: Web/API/GlobalEventHandlers/onkeyup
---
<div>{{ApiRef("HTML DOM")}}</div>
<p>A propriedade<strong> onkeyup</strong> retorna o código de manipulador de eventos onKeyUp no elemento atual.</p>
<h2 id="Sintaxe">Sintaxe</h2>
<pre class="syntaxbox">element.onkeyup = <em>código do manipulador do evento</em>s
</pre>
<h2 id="Exemplo">Exemplo</h2>
<pre class="brush: js"> <input type="text" onKeyUp="teclaPressionada(event)">
<script>
function teclaPressionada(evt) {
console.log(evt.keyCode)
}
</script>
</pre>
<h2 id="Notas">Notas</h2>
<p>O evento keyup é iniciado quando o usuário libera a tecla é pressionada.</p>
<h2 id="Especificações">Especificações</h2>
<table class="spectable standard-table">
<tbody>
<tr>
<th scope="col">Specification</th>
<th scope="col">Status</th>
<th scope="col">Comment</th>
</tr>
<tr>
<td>{{SpecName('HTML WHATWG','webappapis.html#handler-onkeyup','onkeyup')}}</td>
<td>{{Spec2('HTML WHATWG')}}</td>
<td> </td>
</tr>
</tbody>
</table>
<h2 id="Compatibilidade">Compatibilidade</h2>
<article>
<div class="hidden">
<p>The compatibility table on this page is generated from structured data. If you'd like to contribute to the data, please check out <a href="https://github.com/mdn/browser-compat-data">https://github.com/mdn/browser-compat-data</a>and send us a pull request.</p>
</div>
<p>{{Compat("api.GlobalEventHandlers.onkeyup")}}</p>
</article>
<div id="compat-mobile"> </div>
|