-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjs04-eventos.html
42 lines (38 loc) · 1.21 KB
/
js04-eventos.html
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
<!DOCTYPE HTML>
<html>
<head>
<meta charset="utf-8">
<script type="text/javascript">
window.addEventListener("load",function(){
alert("Enhorabuena, es el visitante 200. ¡Otro perrito piloto! \n Por cierto, la página ha cargado");
});
window.addEventListener("keydown",teclaPulsada);
function botonClick(evento){
alert("No me gustan los alert, pero estos son los eventos:");
document.getElementById('eventos').innerHTML = "<li>"+(evento.type)+"</li>";
document.getElementById('eventos').innerHTML = "<li>"+(evento.screenX)+"</li>";
/* boton.removeEventListener("click",botonClick) */
};
function teclaPulsada(evento)
{
alert(evento.keyCode);
}
window.addEventListener("click",premio);
function premio()
{
document.write("<img src='http://www.yupifotos.com/download.php?attachid=7632'/>");
}
</script>
</head>
<body>
<button id='miBoton'>Haz click aquí</button>
<button id='premio'>Obtener Premio</button>
<script type="text/javascript">
var boton=document.getElementById('miBoton');
boton.addEventListener('click', botonClick);
var premio=document.getElementById('premio');
premio.addEventListener('click', premio);
</script>
<div id="eventos"></div>
</body>
</html>