Ver Mensaje Individual
  #3 (permalink)  
Antiguo 11/02/2015, 10:36
edmonddantes
 
Fecha de Ingreso: febrero-2015
Mensajes: 2
Antigüedad: 9 años, 11 meses
Puntos: 0
Respuesta: DOM en fichero .js

Hola Alexis.

Muchas gracias por tu respuesta.

Lamentablemente, no he conseguido que funcione. Seguro que estoy haciendo algo mal , pero no lo acabo de ver y lo he probado en Safari, Firefox y Chrome.

Te adjunto el código completo con tu ejemplo a ver si me puedes decir algo.

Por cierto. ¿que significado tiene []. al comienzo de tu código?

Este es el código completo que no me funciona:

<!DOCTYPE HTML >
<html>
<head>
<meta charset="utf-8">
<title>Presentación</title>
<link href="estilos1.css" rel="stylesheet" type="text/css">
<script languaje="javascript" type="text/javascript">

[].forEach.call(document.querySelectorAll("botonc"), function(img){
img.addEventListener("click", function(){
alert(this.src + "\n" + this.id);
}, false);
});

</script>
</head>

<body>
<img class="botonc" id="im16" src="markgris2.png" height="45" width="45" >
<img class="botonc" id="im26" src="markgris2.png" height="45" width="45">
<img class="botonc" id="im36" src="markgris2.png" height="45" width="45">
</body>
</html>