aboutsummaryrefslogtreecommitdiff
path: root/files/es/web/api/globaleventhandlers/onkeyup/index.html
blob: 15315950f343cb2498da4b170b5a9550f9ba6c7e (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
---
title: GlobalEventHandlers.onkeyup
slug: Web/API/GlobalEventHandlers/onkeyup
translation_of: Web/API/GlobalEventHandlers/onkeyup
---
<div>{{ApiRef("HTML DOM")}}</div>

<p>La propiedad <strong>onkeyup</strong> devuelve un manejador para el evento onKeyUp del elemento actual.</p>

<h2 id="Sintaxis">Sintaxis</h2>

<pre class="syntaxbox">element.onkeyup = <em>event handling code</em>
</pre>

<h2 id="Ejemplo">Ejemplo</h2>

<pre class="brush: js"> &lt;input type="text" onKeyUp="keyWasPressed(event)"&gt;
 &lt;script&gt;function keyWasPressed(evt){ console.log(evt.keyCode) }&lt;/script&gt;
</pre>

<h2 id="Notas">Notas</h2>

<p>El evento keyup se lanza cuando el usuario suelta la tecla que ha sido presionada.</p>

<h2 id="Especificaciones">Especificaciones</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="Compatibilidad_con_navegadores">Compatibilidad con navegadores</h2>

{{Compat("api.GlobalEventHandlers.onkeyup")}}