blob: 7b273c6e3370bd9c198e18c305e3ca3466329128 (
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
|
---
title: Event.createEvent()
slug: Web/API/Event/createEvent
tags:
- API
- DOM
- Evento
- metodo
translation_of: Web/API/Document/createEvent
translation_of_original: Web/API/Event/createEvent
---
<p>{{APIRef("DOM")}}</p>
<p>Crea un nuevo evento, que debe ser inicializado llamando a su método <code>init()</code>.</p>
<h3 id="Sintaxis">Sintaxis</h3>
<pre><code>document.createEvent(tipo);</code></pre>
<dl>
<dt><code>tipo</code></dt>
<dd>Una string indicando el tipo de evento a crear.</dd>
</dl>
<p>Este método devuelve un nuevo objeto {{ domxref("Event") }} del DOM del tipo indicado, que debe ser inicializado antes de su uso.</p>
<h3 id="Ejemplo">Ejemplo</h3>
<pre>var nuevoEvento = document.createEvent("UIEvents");</pre>
<h3 id="Especificación">Especificación</h3>
<ul>
<li><a class="external" href="http://www.w3.org/TR/DOM-Level-2-Events/events.html#Events-document" title="http://www.w3.org/TR/DOM-Level-2-Events/events.html#Events-document">DOM Level 2 Events</a></li>
</ul>
|