Ver Mensaje Individual
  #5 (permalink)  
Antiguo 02/04/2007, 09:43
Avatar de Saruman
Saruman
 
Fecha de Ingreso: mayo-2003
Ubicación: Panama city, Panama, Panama
Mensajes: 1.154
Antigüedad: 21 años, 7 meses
Puntos: 5
Re: elemento array

podrias ponerle un ID a tu img:

<img id="miimagen">

muy importante: para cargar la imagen debes hacerlo: en el evento onload o despues de que hallas escrito el objeto img, de lo contrario te mandará error.

seria:

Código HTML:
<script>
window.onload = function() {}
var s = new Array();

s[0] = new Image();
s[0].src = "pepe.jpg";

    document.getElementById("miimagen").src =  s[0].src;
}
</script> 
saludos
__________________
Saruman

One Ring to rule them all, One Ring to find them, One Ring to bring them all and in the darkness bind them.