Hola a todos, una dudilla ...
Esto por que no funciona :
var s = new Array();
s[0] = new Image();
s[0].src = "pepe.jpg";
document.images[0].src = s[0].src;
| ||||
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>
__________________ Saruman One Ring to rule them all, One Ring to find them, One Ring to bring them all and in the darkness bind them. |